Skip to content

Commit

Permalink
add powerlift to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 28, 2024
1 parent 31514cd commit 356e589
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,26 @@ jobs:
name: bdist
path: bld/bdist

powerlift:
runs-on: ubuntu-20.04
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Build powerlift package
run: |
python -m pip install --upgrade pip setuptools wheel
cd python/powerlift
python setup.py bdist_wheel -d ../../bld/bdist
- name: Publish bdist package
uses: actions/upload-artifact@v4
with:
name: powerlift
path: bld/bdist

testC:
needs: [bld]
strategy:
Expand Down

0 comments on commit 356e589

Please sign in to comment.