Cantina 516: An attacker can exploit the EVC account system to steal Euler vault tokens from users #12
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: checkrules | |
on: | |
push: | |
branches: | |
- certora | |
pull_request: | |
jobs: | |
checkrules: | |
name: Run Certora prover on all configs | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: setup cvt | |
run: | | |
pip install certora-cli==7.6.3 | |
echo "`pwd`/.github/executables" >> $GITHUB_PATH | |
- name: run certora prover on conf files | |
run: .github/executables/checkAllSpecs | |
env: | |
CERTORAKEY: ${{ secrets.CERTORAKEY }} |