feat: add name param to strategy contracts #573
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
on: [push] | |
name: Optimized Build & Tests (profile=optimized) | |
jobs: | |
check: | |
name: Forge build (profile=optimized) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run build | |
run: FOUNDRY_PROFILE=optimized forge build --sizes --skip test | |
- name: Run tests | |
run: FOUNDRY_PROFILE=optimized forge test |