chore(deps): bump docker/login-action from 3.6.0 to 3.7.0 #900
Workflow file for this run
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: Run Forge Tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
| SEPOLIA_RPC_URL: ${{ secrets.SEPOLIA_RPC_URL }} | |
| jobs: | |
| test: | |
| name: Foundry Test Suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 1 | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@8789b3e21e6c11b2697f5eb56eddae542f746c10 # v1.7.0 | |
| with: | |
| version: stable | |
| cache-key: ${{ github.job }}-${{ github.sha }} | |
| - name: Build contracts | |
| run: | | |
| forge --version | |
| forge soldeer update | |
| forge build --sizes | |
| - name: Check gas snapshot | |
| run: forge snapshot --check --tolerance 3 -vvv |