We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84229b9 commit c4a1a22Copy full SHA for c4a1a22
1 file changed
.github/workflows/ci.yml
@@ -16,7 +16,7 @@ on:
16
17
jobs:
18
lint:
19
- timeout-minutes: 10
+ timeout-minutes: 30
20
name: lint
21
runs-on: ubuntu-latest
22
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
@@ -31,6 +31,13 @@ jobs:
31
- name: Install dependencies
32
run: uv sync --all-extras
33
34
+ - name: Cache mypy
35
+ uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
36
+ with:
37
+ path: .mypy_cache
38
+ key: mypy-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
39
+ restore-keys: mypy-${{ runner.os }}-
40
+
41
- name: Run lints
42
run: ./scripts/lint
43
env:
0 commit comments