Skip to content

Bump codecov/codecov-action from 4.6.0 to 5.0.7 in the github-actions group across 1 directory #222

Bump codecov/codecov-action from 4.6.0 to 5.0.7 in the github-actions group across 1 directory

Bump codecov/codecov-action from 4.6.0 to 5.0.7 in the github-actions group across 1 directory #222

Workflow file for this run

name: test
on:
push:
branches:
- "master"
- "test-me-*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: |
tox -e py
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true