chore(deps): bump apify/workflows/.github/workflows/python_lint_check.yaml from 6cbb5232cc59d59047f1e8268da10747e729989e to 47c305bdd5647f56c224ef9257804493e0912698 #14
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: Code checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| lint_check: | |
| name: Lint check | |
| uses: apify/workflows/.github/workflows/python_lint_check.yaml@main | |
| with: | |
| python_versions: '["3.10", "3.11", "3.12", "3.13"]' | |
| install_command: uv pip install --system -e ".[dev]" | |
| lint_command: ruff check src tests && ruff format --check src tests | |
| type_check: | |
| name: Type check | |
| uses: apify/workflows/.github/workflows/python_type_check.yaml@main | |
| with: | |
| python_versions: '["3.10", "3.11", "3.12", "3.13"]' | |
| install_command: uv pip install --system -e ".[dev]" | |
| type_check_command: mypy src | |
| unit_tests: | |
| name: Unit tests | |
| uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main | |
| with: | |
| python_versions: '["3.10", "3.11", "3.12", "3.13"]' | |
| operating_systems: '["ubuntu-latest"]' | |
| install_command: uv pip install --system -e ".[dev]" | |
| run_tests_command: pytest -q |