Update contract addresses #12
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: Solidity Unit Tests | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
solidity-unit-tests: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
run: ./scripts/install_foundry.sh | |
- name: Run unit tests | |
run: | | |
export PATH=$PATH:$HOME/.foundry/bin | |
cd contracts/ | |
forge test -vvv |