Burn using 0xdead to enable taking reserves on L2s (#1058) #2104
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: Run Tests | |
on: [push] | |
env: | |
FOUNDRY_PROFILE: ci | |
ETH_RPC_URL: ${{secrets.ETH_RPC_URL}} ## Loads environment from secrets | |
L2_ETH_RPC_URL: ${{secrets.L2_ETH_RPC_URL}} | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Forge tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run Forge build | |
run: | | |
forge --version | |
forge build --sizes | |
id: build | |
- name: Run tests | |
run: | | |
make test-with-gas-report && make test-regression-all | |
id: test |