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 e26fb2b commit 2371e13Copy full SHA for 2371e13
.github/workflows/ci.yml
@@ -61,11 +61,6 @@ jobs:
61
fi
62
done
63
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
69
- name: Run tests
70
run: |
71
eval $(opam env)
@@ -81,6 +76,10 @@ jobs:
81
76
-name '*.err' -o \
82
77
-name '*.out' \
83
78
-exec cat '{}' \;
79
+ - name: Check library proofs
80
+ run: |
+ find ./library -type f -iname "*_proofs.tla" -print0 |
+ xargs --null --max-args=1 ./_build/tlapm/bin/tlapm --cleanfp
84
- name: Clone tlaplus/examples
85
uses: actions/checkout@v4
86
with:
0 commit comments