Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pytest
permissions:
contents: read

on:
- pull_request
- push

env:
PYTHON_LATEST_VERSION: '3.14'
Comment on lines +9 to +10

Copilot AI Dec 22, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PYTHON_LATEST_VERSION environment variable is defined but never used anywhere in the workflow. Consider removing this unused variable or utilizing it if it was intended for a specific purpose.

Copilot uses AI. Check for mistakes.

jobs:
pytest:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true

- name: dependencies
run: uv sync --locked --extra dev

- name: pytest
run: uv run pytest