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.
2 parents 5cc3cb8 + e17615d commit 8742d6bCopy full SHA for 8742d6b
.github/workflows/test.yml
@@ -1,6 +1,10 @@
1
name: test
2
3
-on: workflow_dispatch
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
env:
10
FOUNDRY_PROFILE: ci
@@ -37,9 +41,14 @@ jobs:
37
41
uses: actions/setup-python@v4
38
42
with:
39
43
python-version: "3.11"
44
+
45
+ - name: Install dependencies
46
+ run: pip install argparse eth_abi halmos
40
47
- - name: Install Halmos
- run: pip install halmos
48
+ - name: Run Python reference tests
49
+ run: |
50
+ forge test -vvv --ffi --match-test testRef
51
+ id: test-ref
52
53
- name: Run Halmos
54
run: halmos --function testProve --loop 256 --error-unknown --test-parallel --solver-parallel --solver-timeout-assertion 0
0 commit comments