We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 263ffce commit 6a62c07Copy full SHA for 6a62c07
1 file changed
.github/workflows/ci.yml
@@ -33,11 +33,7 @@ jobs:
33
docker run --rm --entrypoint bash invcon -c "
34
java -version 2>&1 &&
35
java -cp /app/daikon-5.8.6/daikon.jar daikon.Daikon --help 2>&1 | head -10
36
- "
37
-
38
- - name: Print invariants
39
- run: |
40
- cat /tmp/invcon-out/0x0e9d46eed51a527db8f5c12a803eb7fddf4da332/TokenERC20.inv
+ "
41
42
- name: Run smoke test
43
env:
@@ -52,6 +48,10 @@ jobs:
52
48
--workspace /home/realworldcontracts/ \
53
49
| tee output.txt || true
54
50
51
+ - name: Print invariants
+ run: |
+ cat /tmp/invcon-out/0x0e9d46eed51a527db8f5c12a803eb7fddf4da332/TokenERC20.inv
+
55
- name: Validate output
56
run: |
57
grep -q "finished" output.txt || { echo "FAIL: invcon did not complete"; exit 1; }
0 commit comments