Skip to content

Bump actions/checkout from 5 to 6 #124

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #124

Workflow file for this run

name: CI Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ci_checks:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry lock
poetry install --no-interaction --no-ansi
- name: Run Pre-commit
run: |
python3 -m pip install --upgrade pip
pip install pre-commit
pre-commit run --all-files
- name: Run tests
run: |
poetry run pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}