Adds robinhood fee activation & v4 fee activation #475
This file contains hidden or 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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - audit/* | |
| permissions: {} | |
| jobs: | |
| forge-tests: | |
| name: Forge Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: bullfrogsec/bullfrog@dcde5841b19b7ef693224207a7fdec67fce604db # v0.8.3 | |
| with: | |
| # List of IPs to allow outbound connections to. | |
| # By default, only localhost and IPs required for the essential operations of Github Actions are allowed. | |
| # allowed-ips: | | |
| # List of domains to allow outbound connections to. | |
| # Wildcards are accepted. For example, if allowing `*.google.com`, this will allow `www.google.com`, `console.cloud.google.com` but not `google.com`. | |
| # By default, only domains required for essential operations of Github Actions and uploading job summaries are allowed. | |
| # Refer to https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#communication-requirements-for-github-hosted-runners-and-github for additional domains that should be allowed for additional Github Actions features. | |
| #allowed-domains: | |
| # The egress policy to enforce. Valid values are `audit` and `block`. | |
| # Default: audit | |
| egress-policy: audit | |
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e # v1.5 | |
| with: | |
| version: stable | |
| - name: Show Forge version | |
| run: | | |
| forge --version | |
| - name: Build | |
| run: forge build | |
| env: | |
| FOUNDRY_PROFILE: pr | |
| - name: Run tests | |
| run: forge test --isolate -vvv | |
| env: | |
| FOUNDRY_PROFILE: pr | |
| FORGE_SNAPSHOT_CHECK: false | |
| MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
| UNICHAIN_RPC_URL: ${{ secrets.UNICHAIN_RPC_URL }} | |
| ARBITRUM_RPC_URL: ${{ secrets.ARBITRUM_RPC_URL }} |