Skip to content

build(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#81) #229

build(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#81)

build(deps): bump actions/checkout from 5.0.0 to 6.0.0 (#81) #229

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"
- "3.14"
- "pypy3.10"
permissions:
contents: read
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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