Skip to content

Commit 2371e13

Browse files
committed
CI: move library proof check below unit tests
Signed-off-by: Andrew Helwer <[email protected]>
1 parent e26fb2b commit 2371e13

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ jobs:
6161
fi
6262
done
6363
exit 1
64-
- name: Check library proofs
65-
run: |
66-
find ./library -type f -iname "*_proofs.tla" \
67-
-print0 | xargs --null --max-args=1 --no-run-if-empty \
68-
./_build/tlapm/bin/tlapm --cleanfp
6964
- name: Run tests
7065
run: |
7166
eval $(opam env)
@@ -81,6 +76,10 @@ jobs:
8176
-name '*.err' -o \
8277
-name '*.out' \
8378
-exec cat '{}' \;
79+
- name: Check library proofs
80+
run: |
81+
find ./library -type f -iname "*_proofs.tla" -print0 |
82+
xargs --null --max-args=1 ./_build/tlapm/bin/tlapm --cleanfp
8483
- name: Clone tlaplus/examples
8584
uses: actions/checkout@v4
8685
with:

0 commit comments

Comments
 (0)