Bump codecov/codecov-action from 4 to 5 in the action-dependencies group #852
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# Check all PR | |
jobs: | |
min: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
python-version: "3.9" | |
- os: ubuntu-22.04 | |
python-version: "3.12" | |
- os: macos-14 | |
python-version: "3.12" | |
- os: windows-2022 | |
python-version: "3.12" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install tox coverage[toml] | |
- name: run Python minimal tests | |
run: tox -e tests-min | |
all: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
python-version: "3.9" | |
- os: ubuntu-22.04 | |
python-version: "3.12" | |
- os: macos-14 | |
python-version: "3.12" | |
- os: windows-2022 | |
python-version: "3.12" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install tox coverage[toml] | |
- name: run Python tests | |
run: | | |
tox -e tests | |
coverage xml | |
- name: upload to codecov.io | |
uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
files: tests/coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |