-
Notifications
You must be signed in to change notification settings - Fork 261
41 lines (33 loc) · 974 Bytes
/
call.test-hot-fuzz.yml
File metadata and controls
41 lines (33 loc) · 974 Bytes
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
name: Reusable Workflow | Test HotFuzz
on:
workflow_call:
jobs:
test-spec-haskell:
name: Test HotFuzz - Linux
runs-on: ubuntu-22.04
defaults:
run:
shell: nix develop .#ci-hot-fuzz -c bash -xe {0}
steps:
- uses: actions/checkout@v4
- name: Setup workflow base
id: base
uses: ./.github/actions/setup-workflow-base
with:
package-name: hot-fuzz
cache-key-prefix: hot-fuzz-
dev-shell-name: ci-hot-fuzz
- name: Install dependencies
if: steps.base.outputs.cache-hit != 'true'
run: |
yarn install
solc --version
forge --version
slither --version
echidna --version
- name: Run tests
if: steps.base.outputs.cache-hit != 'true'
run: ./hot-fuzz contracts/superfluid-tests/SuperHotFuzz.yaml
working-directory: packages/hot-fuzz
env:
ECHIDNA_TEST_LIMIT: 20000