-
Notifications
You must be signed in to change notification settings - Fork 44
115 lines (99 loc) · 3.12 KB
/
examples.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Test examples
on:
push:
branches:
- main
pull_request:
branches:
- "*"
env:
FOUNDRY_PROFILE: ci
jobs:
foundry:
name: Test Foundry examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Compile ERC20 Foundry example
working-directory: tests/ERC20/foundry
run: forge build --build-info
- name: Run Echidna against ERC20 Internal Foundry example
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC20/foundry
files: .
config: ./echidna-config.yaml
crytic-args: --ignore-compile
contract: CryticERC20InternalHarness
- name: Run Echidna against ERC20 External Foundry example
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC20/foundry
files: .
config: ./echidna-config-ext.yaml
crytic-args: --ignore-compile
contract: CryticERC20ExternalHarness
- name: Compile ERC4646 Foundry example
working-directory: tests/ERC4626/foundry
run: forge build --build-info
- name: Run Echidna against ERC4626 Foundry example
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC4626/foundry
files: .
config: ./echidna.yaml
crytic-args: --ignore-compile
contract: CryticERC4626InternalHarness
hardhat:
name: Test Hardhat examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Nodejs
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies and compile ERC20 example
working-directory: tests/ERC20/hardhat
run: |
npm ci
npx hardhat compile --force
- name: Run Echidna for Internal tests
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC20/hardhat
files: .
config: ./tests/echidna-config.yaml
crytic-args: --ignore-compile
contract: CryticERC20InternalHarness
- name: Run Echidna for External tests
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC20/hardhat
files: .
config: ./tests/echidna-config-ext.yaml
crytic-args: --ignore-compile
contract: CryticERC20ExternalHarness
- name: Install dependencies and compile ERC4626 example
working-directory: tests/ERC4626/hardhat
run: |
npm ci
npx hardhat compile --force
- name: Run Echidna
uses: crytic/echidna-action@v2
with:
echidna-workdir: ./tests/ERC4626/hardhat
files: .
config: tests/echidna-config.yaml
crytic-args: --ignore-compile
contract: CryticERC4626Harness