Skip to content

build(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#64) #187

build(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#64)

build(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#64) #187

Workflow file for this run

name: Run all the unit tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
timeout-minutes: 5
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.10"
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt
pip install -r requirements/testing.txt
- name: Run tests
run: |
pytest