Overhaul synthdog_grounding: correctness fixes, grounding annotations, quality metrics, and codebase cleanup #84
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: Lint | |
| on: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: lint-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python | |
| run: uv python install 3.10 | |
| - name: Install ruff | |
| run: uv tool install ruff | |
| - name: Ruff check (lint) | |
| run: ruff check . | |
| - name: Ruff format check | |
| run: ruff format --check . |