Skip to content

Commit

Permalink
Update github workflows (#149)
Browse files Browse the repository at this point in the history
* Update tests_bench.yml

* fix workflow

---------
  • Loading branch information
clementchadebec authored Jul 17, 2024
1 parent 9c7ab84 commit 6419e21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.7'
PYTHON: '3.8'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.7
python-version: 3.8
- name: Generate coverage report
run: |
pip install .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.7'
PYTHON: '3.8'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.7
python-version: 3.8
- name: Run tests
run: |
pip install .
pip install pytest
pip install pytest-cov
pytest .
pytest .

0 comments on commit 6419e21

Please sign in to comment.