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 d00eef6 commit 867b949Copy full SHA for 867b949
.github/workflows/ci.yml
@@ -61,6 +61,20 @@ jobs:
61
fi
62
done
63
exit 1
64
+ - name: Check library proofs
65
+ run: |
66
+ find ./library -type f -iname "*_proofs.tla" \
67
+ \( \
68
+ -not -name "BagsTheorems_proofs.tla" \
69
+ -and -not -name "FiniteSetTheorems_proofs.tla" \
70
+ -and -not -name "FunctionTheorems_proofs.tla" \
71
+ -and -not -name "NaturalsInduction_proofs.tla" \
72
+ -and -not -name "SequenceTheorems_proofs.tla" \
73
+ -and -not -name "SequencesExtTheorems_proofs.tla" \
74
+ -and -not -name "WellFoundedInduction_proofs.tla" \
75
+ \) \
76
+ -print0 | xargs --null --max-args=1 --no-run-if-empty \
77
+ ./_build/tlapm/bin/tlapm --cleanfp
78
- name: Run tests
79
run: |
80
eval $(opam env)
0 commit comments