-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (36 loc) · 1.01 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
name: Certora
on: [push, pull_request]
jobs:
certora:
name: Certora
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arbitrum-token-bridge:
- l1-token-gateway
- l2-token-gateway
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
java-package: jre
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install solc-select
run: pip3 install solc-select
- name: Solc Select 0.8.21
run: solc-select install 0.8.21
- name: Install Certora
run: pip3 install certora-cli-beta
- name: Verify ${{ matrix.arbitrum-token-bridge }}
run: make certora-${{ matrix.arbitrum-token-bridge }} results=1
env:
CERTORAKEY: ${{ secrets.CERTORAKEY }}