Skip to content

Add compliance overrides, scoped-key CRUD, register, and search #15

Add compliance overrides, scoped-key CRUD, register, and search

Add compliance overrides, scoped-key CRUD, register, and search #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
cache: pip
- run: python -m pip install --upgrade pip
- run: pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Type-check (mypy)
run: mypy
- name: Test (pytest)
run: pytest