-
Notifications
You must be signed in to change notification settings - Fork 37
39 lines (37 loc) · 1.28 KB
/
fuzz.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
name: Fuzz
on:
workflow_dispatch:
inputs:
call-delay:
description: 'Length of time (in seconds) to wait between canister method fuzz test calls'
required: false
type: string
default: '.1'
timeout:
description: 'Length of time (in minutes) after which the fuzz tests will automatically succeed'
required: false
type: string
default: '300'
jobs:
run-tests:
name: ${{ matrix.test_group.name }}
strategy:
fail-fast: false
matrix:
test_group:
- {
name: 'E2E Class',
directories: './tests/end_to_end/candid_rpc/class_syntax'
}
- {
name: 'Property IC API',
directories: './tests/property/ic_api'
}
uses: ./.github/workflows/run_test.yml
with:
directories: ${{ matrix.test_group.directories }}
exclude-dirs: class_syntax/new
fuzz: true
call-delay: ${{ inputs.call-delay }}
timeout: ${{ inputs.timeout }}
link-azle: true