Certora formally verified rewards checker #464
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: Storage layout checks | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
paths: | |
- lib/** | |
- src/common/** | |
- src/compound/** | |
- "*.lock" | |
- remappings.txt | |
- .github/workflows/ci-storage-check-compound.yml | |
jobs: | |
morpho-compound: | |
name: morpho-compound | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
shell: bash | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Check Lens storage layout | |
uses: Rubilmax/[email protected] | |
with: | |
contract: src/compound/lens/Lens.sol:Lens | |
- name: Check Morpho storage layout | |
uses: Rubilmax/[email protected] | |
with: | |
contract: src/compound/Morpho.sol:Morpho | |
- name: Check RewardsManager storage layout | |
uses: Rubilmax/[email protected] | |
with: | |
contract: src/compound/RewardsManager.sol:RewardsManager |