Skip to content

Commit ce5e0f6

Browse files
committed
fix(nolints.yml): move print Lean version step after the installation of Lean (#24088)
Fixes an oversight from #23868, which [made the workflow fail](https://github.com/leanprover-community/mathlib4/actions/runs/14424502470/job/40451294006).
1 parent fad8b5d commit ce5e0f6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/nolints.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ jobs:
2323
## fetch the whole repository, as we want to push to it later
2424
fetch-depth: 0
2525

26-
- name: print lean and lake versions
27-
run: |
28-
lean --version
29-
lake --version
30-
3126
- name: prune ProofWidgets .lake
3227
run: |
3328
# The ProofWidgets release contains not just the `.js` (which we need in order to build)
@@ -44,6 +39,11 @@ jobs:
4439
use-github-cache: false
4540
use-mathlib-cache: true
4641

42+
- name: print lean and lake versions
43+
run: |
44+
lean --version
45+
lake --version
46+
4747
- name: build mathlib
4848
id: build
4949
uses: liskin/gh-problem-matcher-wrap@e7b7beaaafa52524748b31a381160759d68d61fb # v3.0.0

0 commit comments

Comments
 (0)