Enhancements in data-sync flow and updated agency_id in agency_sync t… #837
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: Pyright Type Check | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| push: | |
| branches: ["*"] | |
| jobs: | |
| pyright: | |
| name: Pyright Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: '.python-version' | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install dependencies (locked) | |
| run: uv sync --frozen | |
| - name: Run Pyright | |
| run: uv run pyright |