Skip to content

Commit

Permalink
Add pip package build
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Dec 16, 2023
1 parent dbe2374 commit 1637780
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,24 @@ jobs:
cache: 'pip'
- name: Run tests
run: make test
build:
name: Make pip packages
runs-on: ubuntu-20.04
needs: [format, lint, test]
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Building toltecmk
run: make build
- uses: actions/upload-artifact@v3
with:
name: pip
path: dist/*
standalone:
name: Make Standalone
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 1637780

Please sign in to comment.