Skip to content

Commit f4ffffa

Browse files
added generic medusa config
1 parent 23818e9 commit f4ffffa

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/medusa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
run: |
172172
solc-select install ${{ matrix.solc-version || '0.8.0' }}
173173
solc-select use ${{ matrix.solc-version || '0.8.0' }}
174-
medusa fuzz --compilation-target ${{ matrix.files }} --target-contracts ${{ matrix.contract }} --no-color > ${{ matrix.files }}.out || true
174+
medusa fuzz --compilation-target ${{ matrix.files }} --target-contracts ${{ matrix.contract }} --no-color --config medusa.json > ${{ matrix.files }}.out || true
175175
176176
- name: Verify that the output is correct
177177
working-directory: ${{ matrix.workdir }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"fuzzing": {
3+
"testing": {
4+
"propertyTesting": {
5+
"enabled": true,
6+
"testPrefixes": [
7+
"echidna_"
8+
]
9+
}
10+
}
11+
},
12+
"compilation": {
13+
"platform": "crytic-compile",
14+
"platformConfig": {
15+
"target": ".",
16+
"solcVersion": "",
17+
"exportDirectory": "",
18+
"args": []
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)