build(deps): bump types-pytz from 2025.1.0.20250204 to 2025.2.0.20250326 #62
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: Check | |
on: | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: uv sync --group=check | |
- run: uv run just check-code | |
- run: uv run just check-type | |
- run: uv run just check-format | |
- run: uv run just check-security | |
- run: uv run just check-coverage |