diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0fceabf..8d55ac1 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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