Bump codecov/codecov-action from 4 to 5 (#233) #992
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "59 21 * * *" | |
jobs: | |
testing: | |
name: (${{ matrix.os }}, ${{ matrix.environment-file }}) | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
environment-file: | |
[ | |
ci/39-oldest.yaml, | |
ci/39-latest.yaml, | |
ci/39-numba-latest.yaml, | |
ci/310-oldest.yaml, | |
ci/310-latest.yaml, | |
ci/310-numba-latest.yaml, | |
ci/311-latest.yaml, | |
ci/311-numba-latest.yaml, | |
ci/312-latest.yaml, | |
ci/312-numba-latest.yaml, | |
ci/312-dev.yaml, | |
] | |
include: | |
- environment-file: ci/312-latest.yaml | |
os: macos-13 # Intel | |
- environment-file: ci/312-numba-latest.yaml | |
os: macos-13 # Intel | |
- environment-file: ci/312-latest.yaml | |
os: macos-14 # Apple Silicon | |
- environment-file: ci/312-numba-latest.yaml | |
os: macos-14 # Apple Silicon | |
- environment-file: ci/312-latest.yaml | |
os: windows-latest | |
- environment-file: ci/312-numba-latest.yaml | |
os: windows-latest | |
fail-fast: false | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches and tags. | |
- name: setup micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-file: ${{ matrix.environment-file }} | |
micromamba-version: 'latest' | |
- name: environment info | |
run: | | |
micromamba info | |
micromamba list | |
- name: spatial versions | |
run: | | |
python -c "import geopandas; geopandas.show_versions();" | |
- name: Run pytest | |
run: | | |
pytest \ | |
mapclassify \ | |
-r a \ | |
-v \ | |
-n auto \ | |
--color yes \ | |
--cov-append \ | |
--cov mapclassify \ | |
--cov-report xml \ | |
--cov-report term-missing | |
- name: run docstring tests | |
if: contains(matrix.environment-file, '312-numba-latest') && contains(matrix.os, 'ubuntu') | |
run: | | |
pytest \ | |
-v \ | |
-r a \ | |
-n auto \ | |
--color yes \ | |
--cov-append \ | |
--cov mapclassify \ | |
--cov-report xml \ | |
--doctest-only \ | |
--mpl mapclassify | |
- name: codecov (${{ matrix.os }}, ${{ matrix.environment-file }}) | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
name: mapclassify-codecov |