Skip to content

Commit

Permalink
CI: Add test creating the python wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonzalezfluendo committed Sep 29, 2024
1 parent f7d69e3 commit d41cd40
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Check
run: |
make check
- name: Test Build the wheel
run: |
pip wheel .
linux:
runs-on: ubuntu-22.04
Expand All @@ -44,7 +47,9 @@ jobs:
- name: Check
run: |
make check
- name: Test Build the wheel
run: |
pip wheel .
windows:
runs-on: windows-latest
Expand All @@ -61,3 +66,6 @@ jobs:
- name: Check
run: |
make check
- name: Test Build the wheel
run: |
pip wheel .

0 comments on commit d41cd40

Please sign in to comment.