Increase page size from 100 to 1000 #340
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, pull_request] # yamllint disable-line rule:truthy | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up py10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: astral-sh/setup-uv@v3 | |
- name: Install dependencies | |
id: install-deps | |
run: | | |
uv sync --only-group types | |
- name: run linters | |
run: | | |
chmod +x .ci/lint.sh | |
uv run .ci/lint.sh |