Skip to content

Commit

Permalink
Merge branch 'main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
arvkevi committed Jun 4, 2024
2 parents 5f6f370 + 1d0befc commit a58151b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
- python-version: "3.7"
os: macos-latest
include: # So run those legacy versions on Intel CPUs.
- python-version: "3.7"
os: macos-13
env:
OS: ${{ matrix.os }}
PYHTHON: ${{ matrix.python-version }}
Expand All @@ -29,9 +35,10 @@ jobs:
pip uninstall -y matplotlib
pytest --cov=kneed --cov-report=xml:coverage2.xml tests/test_no_matplotlib.py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
env_vars: OS,PYTHON
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: true
flags: unittests
name: codecov-umbrella

0 comments on commit a58151b

Please sign in to comment.