Update CHANGELOG
to Note Removal of encodeTransactionData
#767
Workflow file for this run
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rule: ["owner", "safe", "module", "nativeTokenRefund", "signatures", "safeMigration", "safeToL2Migration", "safeToL2Setup"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v4 | |
with: { python-version: 3.11 } | |
- name: Install certora cli | |
run: pip install -r certora/requirements.txt | |
- name: Install solc | |
run: | | |
wget https://github.com/ethereum/solidity/releases/download/v0.7.6/solc-static-linux | |
chmod +x solc-static-linux | |
sudo mv solc-static-linux /usr/local/bin/solc7.6 | |
- name: Verify rule ${{ matrix.rule }} | |
run: | | |
cd certora | |
touch applyHarness.patch | |
make munged | |
cd .. | |
echo "key length" ${#CERTORAKEY} | |
certoraRun certora/conf/${{ matrix.rule }}.conf --wait_for_results=all | |
env: | |
CERTORAKEY: ${{ secrets.CERTORA_KEY }} |