Skip to content

9623 style candidate selection #3

9623 style candidate selection

9623 style candidate selection #3

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e '.[test,dev]'
- name: Lint
run: |
python -m ruff check .
- name: Test
run: |
python -m pytest -q