Skip to content

Typecheck some API interfaces #464

Typecheck some API interfaces

Typecheck some API interfaces #464

Workflow file for this run

name: Run linters on PRs
on:
pull_request:
branches:
- development
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Use the Ruff linter to annotate code style / best-practice issues
# NOTE: More config provided in pyproject.toml
- name: Lint and annotate PR
uses: chartboost/ruff-action@v1
with:
args: "check . --output-format github"