Skip to content

Commit

Permalink
update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jul 21, 2024
1 parent 4045ca9 commit 9aeec9f
Showing 1 changed file with 15 additions and 20 deletions.
35 changes: 15 additions & 20 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest

- name: Install lib
run: |
Expand All @@ -42,6 +36,11 @@ jobs:
run: |
pytest GPy/testing
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
test-linux:
strategy:
matrix:
Expand All @@ -56,17 +55,16 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest

- name: Install lib
run: |
python setup.py develop
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
pytest GPy/testing
Expand All @@ -84,17 +82,16 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest

- name: Install lib
run: |
python setup.py develop
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
pytest GPy/testing
Expand All @@ -117,7 +114,6 @@ jobs:

- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
Expand Down Expand Up @@ -150,7 +146,6 @@ jobs:

- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
Expand Down

0 comments on commit 9aeec9f

Please sign in to comment.