Skip to content

Commit 84ebfaf

Browse files
committed
ci: add github action to check proofs on test/formal/ changes
1 parent c1cda5f commit 84ebfaf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/check-proofs.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Formal Proofs Check
2+
3+
on:
4+
push:
5+
paths:
6+
- 'test/formal/**'
7+
pull_request:
8+
paths:
9+
- 'test/formal/**'
10+
11+
jobs:
12+
chk_proofs:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Correctness proofs for optimization rules
19+
run: scripts/run_proofs.sh

0 commit comments

Comments
 (0)