-
Notifications
You must be signed in to change notification settings - Fork 17
51 lines (42 loc) · 1.09 KB
/
certora.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
48
49
50
51
name: Certora
on: [push, pull_request]
jobs:
certora:
name: Certora
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
allocator:
- buffer
- vault
- roles
- oracle
- registry
- swapper
- depositoruniv3
- stable-swapper
- stable-depositoruniv3
- conduit-mover
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
java-package: jre
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install solc-select
run: pip3 install solc-select
- name: Solc Select 0.8.16
run: solc-select install 0.8.16
- name: Install Certora
run: pip3 install certora-cli-beta
- name: Certora verify ${{ matrix.allocator }}
run: make certora-${{ matrix.allocator }}
env:
CERTORAKEY: ${{ secrets.CERTORAKEY }}