Bump ty from 0.0.29 to 0.0.30 #178
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: Lint | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| # * is a special character in YAML so you have to quote this string | |
| # Run at 1:00 every day | |
| - cron: 0 1 * * * | |
| workflow_dispatch: {} | |
| permissions: {} | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ['3.13'] | |
| platform: [ubuntu-latest, windows-latest] | |
| hook-stage: [pre-commit, pre-push, manual] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v6 # Avoid issues with depending on a particular version of this | |
| # package from another package. | |
| # We need our tags in order to calculate the version. | |
| # See https://github.com/astral-sh/uv/issues/8148. | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: '**/pyproject.toml' | |
| - name: Lint | |
| # Use bash to ensure the step fails if any command fails. | |
| # PowerShell does not fail on intermediate command failures by default. | |
| shell: bash | |
| run: uv run --extra=dev prek run --all-files --hook-stage ${{ matrix.hook-stage }} | |
| --verbose | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| - uses: pre-commit-ci/lite-action@v1.1.0 | |
| if: always() | |
| completion-lint: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: always() | |
| steps: | |
| - name: Check matrix job status | |
| run: |- | |
| if ! ${{ needs.build.result == 'success' }}; then | |
| echo "One or more matrix jobs failed" | |
| exit 1 | |
| fi |