Skip to content

Merge branch 'develop' into master #31

Merge branch 'develop' into master

Merge branch 'develop' into master #31

Workflow file for this run

name: CI
on:
push:
branches: ["develop", "master", "main"]
pull_request:
branches: ["develop", "master", "main"]
permissions:
contents: read
jobs:
lint-and-test:
name: Lint and Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Lint
run: ruff check .
- name: Run tests
run: pytest