Skip to content

fix: typing issues

fix: typing issues #6

Workflow file for this run

on: ["push", "pull_request"]
name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
- run: uv run --group lint ruff check .
- run: uv run --group lint ruff format --check .
- run: uv run --group lint mdformat --check README.md .github/pull_request_template.md
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: recursive
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
- run: uv run --group lint --group test mypy -p trie
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: recursive
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv run --group test pytest tests/core