Skip to content

Commit c809e55

Browse files
committed
Install wheel in CI
1 parent d92e259 commit c809e55

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tests.yml

+15
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,21 @@ jobs:
5555
name: wheel
5656
path: dist/
5757

58+
install_wheel:
59+
name: Install wheel with system Python
60+
needs: build_wheel
61+
runs-on: ubuntu-22.04
62+
steps:
63+
- uses: actions/setup-python@v5
64+
with:
65+
python-version: '3.10'
66+
- uses: actions/download-artifact@v4
67+
with:
68+
name: wheel
69+
- run: pip install *.whl
70+
- name: Check that "evaluation" section appears in help string
71+
run: python -m evap --help | grep --fixed-strings "[evaluation]"
72+
5873
mypy:
5974
runs-on: ubuntu-22.04
6075

0 commit comments

Comments
 (0)