added check for both with and without prior drip call #4469
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: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Show Forge version | |
run: | | |
forge --version | |
- name: Run Forge tests | |
run: | | |
make test | |
id: test | |
env: | |
ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }} |