RewardsAutomation Markets Reserves withdrawn #3089
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: Arbitrum | |
on: [pull_request] | |
env: | |
ARB_RPC_URL: ${{secrets.ARB_RPC_URL}} | |
FOUNDRY_PROFILE: ci | |
jobs: | |
run-arb-tests: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Environment | |
uses: ./.github/actions | |
- name: Run Integration Test | |
uses: nick-fields/retry@v3 | |
with: | |
polling_interval_seconds: 30 | |
retry_wait_seconds: 60 | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: time forge test --match-contract ArbitrumTest --fork-url | |
arbitrum -vvvvv |