bump git submodules #26
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: test | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: [main] | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: "EOF run Forge build" | |
id: build-eof | |
run: make build-eof | |
- name: "EOF run Forge test" | |
id: test-eof | |
run: make test-eof | |
- name: "Legacy run Forge build" | |
id: build-legacy | |
run: make build-legacy | |
- name: "Legacy run Forge test" | |
id: test-legacy | |
run: make test-legacy |