Skip to content

update license year to 2026 #3

update license year to 2026

update license year to 2026 #3

Workflow file for this run

name: Test
on:
push:
branches:
- dev
permissions:
contents: read
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest tests/ -q