Skip to content

Bump codecov/codecov-action from 6.0.0 to 7.0.0 (#10412) #333

Bump codecov/codecov-action from 6.0.0 to 7.0.0 (#10412)

Bump codecov/codecov-action from 6.0.0 to 7.0.0 (#10412) #333

Workflow file for this run

name: Run tests
on:
push:
pull_request:
branches-ignore: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python scripts/ci/install
python scripts/ci/install-check
- name: Run tests
run: python scripts/ci/run-tests --with-cov
- name: Run checks
run: python scripts/ci/run-check
- name: codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v6
with:
directory: tests