Skip to content

Commit

Permalink
actions: run tests on OSX
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
  • Loading branch information
noxdafox committed Sep 5, 2023
1 parent 4ff9121 commit f1d0035
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade cffi wheel delocate
pip install --upgrade cffi wheel delocate pytest
- name: Build and install CLIPS
run: |
make install-clips
Expand All @@ -86,6 +86,12 @@ jobs:
for whl in $(ls dist | grep .whl); do
delocate-wheel -v "dist/$whl"
done
- name: Install CLIPSPy
run: |
pip install dist/*.whl
- name: Run tests
run: |
python -m pytest -v
- name: Store build artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit f1d0035

Please sign in to comment.