Drop unused variable #21
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: ty | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "tasks/make_boundaries/**" | |
| - "scripts/**" | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - "tasks/make_boundaries/**" | |
| - "scripts/**" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| ty: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: uv sync tasks | |
| working-directory: tasks/make_boundaries | |
| run: uv sync | |
| - name: ty check tasks | |
| working-directory: tasks/make_boundaries | |
| run: uvx ty check src | |
| - name: uv sync scripts | |
| working-directory: scripts | |
| run: uv sync | |
| - name: ty check scripts | |
| working-directory: scripts | |
| run: uvx ty check |