Merge pull request #1671 from morpho-org/fix/remove-autodoc-ci #455
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 snapshot check | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
paths: | |
- lib/** | |
- src/common/** | |
- src/aave-v2/** | |
- "*.lock" | |
- remappings.txt | |
- .github/workflows/ci-storage-check-aave-v2.yml | |
jobs: | |
check: | |
name: morpho-aave-v2 | |
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 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run tests | |
run: make storage-layout-check-no-rewards | |
env: | |
PROTOCOL: aave-v2 |