This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
fix: missing stop (#17) #18
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: ci | |
on: [push] | |
jobs: | |
tests: | |
name: Tests with Foundry | |
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: Install Huff | |
uses: huff-language/huff-toolchain@v2 | |
with: | |
version: nightly | |
- name: Run Tests | |
run: forge test -vvv | |
scripts: | |
strategy: | |
fail-fast: true | |
name: Run Scripts | |
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: Install Huff | |
uses: huff-language/huff-toolchain@v3 | |
with: | |
version: nightly | |
- name: Run Forge build | |
run: | | |
forge --version | |
forge build --sizes | |
id: build | |
continue-on-error: true | |
- name: Run scripts | |
run: | | |
ls -lsa | |
ls script/ | |
for file in script/*; do | |
forge script $file -vvvv | |
done |