Skip to content

Basic typing

Basic typing #296

Workflow file for this run

name: Linting
on:
push:
paths-ignore:
- 'docs/**'
- '**/*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Lint with ruff
run: |
pip install ruff
ruff check python/target_selection
ruff format --check python/target_selection