Skip to content

Commit

Permalink
chore: adds aave-governance-v3 test suite to CI (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
HermanObst authored Jun 5, 2024
1 parent 32b43da commit 8cb46fa
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/governance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Governance tests

on:
push:
branches:
- dev
pull_request:
branches:
- dev

env:
CARGO_TERM_COLOR: always
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
jobs:
test:
runs-on: ubuntu-22.04-github-hosted-16core

steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
ref: ${{ github.event.pull_request.head.sha }}

- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly-2024-02-06

- name: Build forge binary
run: cargo build --release --bin forge

- name: Clone aave governance v3
run: git clone https://github.com/Moonsong-Labs/aave-governance-v3.git --depth=1

- name: Run tests using built binary
run: |
cd aave-governance-v3
../target/release/forge test --zksync

0 comments on commit 8cb46fa

Please sign in to comment.