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 59921d0Copy full SHA for 59921d0
.github/workflows/ci.yml
@@ -61,6 +61,19 @@ jobs:
61
fi
62
done
63
exit 1
64
+ - name: Check library proofs
65
+ run: |
66
+ find library -type f -iname "*_proofs.tla" -print0 \
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
+ | xargs -0 -n1 -r ./_build/tlapm/bin/tlapm --cleanfp
77
- name: Run tests
78
run: |
79
eval $(opam env)
0 commit comments