Typecheck some API interfaces #446
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |