-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1.02 KB
/
main.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
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test-fail:
permissions:
contents: read
statuses: write
pull-requests: write
uses: ./.github/workflows/certora_run.yml
secrets:
CERTORAKEY: ${{ secrets.CERTORAKEY }}
with:
use-beta: true
configurations: |-
tests/conf-error.conf
tests/conf-good.conf
tests/conf-good.conf
tests/conf-error.conf
tests/conf-good.conf
tests/conf-good.conf
solc-versions: 0.7.6 0.8.1
job-name: "Failing Test"
server: "vaas-dev"
test-pass:
permissions:
contents: read
statuses: write
pull-requests: write
uses: ./.github/workflows/certora_run.yml
secrets:
CERTORAKEY: ${{ secrets.CERTORAKEY }}
with:
configurations: |-
tests/conf-good.conf
tests/conf-good.conf
tests/conf-good.conf
solc-versions: 0.7.6 0.8.1
job-name: "Passing Test"
server: "vaas-dev"