Skip to content

Bump codecov/codecov-action from 2 to 4 #35

Bump codecov/codecov-action from 2 to 4

Bump codecov/codecov-action from 2 to 4 #35

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
tests:
name: tox on ${{ matrix.python-version }}
runs-on: ubuntu-latest
env:
USING_COVERAGE: "3.11"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
- name: Run tox targets for ${{ matrix.python-version }}
run: python -m tox
- name: Convert coverage
if: contains(env.USING_COVERAGE, matrix.python-version)
run: python -m coverage xml
- name: Upload coverage to Codecov
if: contains(env.USING_COVERAGE, matrix.python-version)
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false