Refine annotation recipe & added custom routing #67
Workflow file for this run
This file contains hidden or 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 Ruff Linter + Formatter Checks | |
| on: | |
| # Run on pull requests to develop or main | |
| pull_request: | |
| branches: [develop, main] | |
| # Allow running manually | |
| workflow_dispatch: | |
| jobs: | |
| ruff-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install package with dependencies | |
| run: uv sync --extra dev | |
| - name: Check Ruff Linter finds no issues | |
| run: uv run ruff check | |
| - name: Check Ruff Formatter identifies no changes | |
| run: uv run ruff format --check |