Skip to content

Commit

Permalink
github-actions: add paramz workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Dec 2, 2023
1 parent ca4f242 commit d3d93d2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,23 @@ jobs:

- name: Install lib
run: |
apt-get update
apt-get install -y git
git config --global --add safe.directory /gpy/src/paramz
pip install -e git+https://github.com/MartinBubel/paramz.git@fix-numpy-types#egg=paramz
apt-get install -y gcc
pip install --upgrade pip
pip install setuptools
python setup.py develop --user
pip install -e .
- name: pytest
run: |
pip install matplotlib
pip install pytest
pytest
pytest .
- name: Build wheel
run: |
pip install wheel
python setup.py wheel
# TODO: add deploy job
# TODO: add deploy job

0 comments on commit d3d93d2

Please sign in to comment.