-
Notifications
You must be signed in to change notification settings - Fork 13
50 lines (40 loc) · 1.08 KB
/
ci-foundry.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Foundry CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1
with:
version: nightly
- name: Foundry compilation cache
uses: actions/cache@v3
with:
path: |
out
cache
key: compilation-${{ github.base_ref || github.ref_name }}
- name: Run tests
run: forge test
- name: Install halmos
run: python3 -m pip install --upgrade halmos
- name: Run halmos
run: halmos --function testProve --loop 4 --symbolic-storage --test-parallel --solver-parallel --solver-timeout-assertion 0