Skip to content

Commit 0f21d22

Browse files
committed
Add symbolic tests with Halmos
1 parent 249ca1f commit 0f21d22

File tree

2 files changed

+410
-0
lines changed

2 files changed

+410
-0
lines changed

.github/workflows/run_halmos.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: ERC721A CI - Halmos
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths-ignore:
7+
- 'docs/**'
8+
- '**.md'
9+
pull_request:
10+
branches: [main]
11+
paths-ignore:
12+
- 'docs/**'
13+
- '**.md'
14+
15+
jobs:
16+
run-halmos:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Use Node.js 16.x
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: 16.x
24+
- name: Install dependencies
25+
run: npm ci
26+
- name: Install halmos
27+
run: python3 -m pip install --upgrade halmos
28+
- name: Run halmos
29+
run: |
30+
sed -i 's/\bprivate\b/internal/g' contracts/ERC721A.sol
31+
cp halmos/ERC721A.t.sol contracts/
32+
halmos

0 commit comments

Comments
 (0)