Add Certora specs #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |