Skip to content

Commit

Permalink
Added GitHub action for foundry tests
Browse files Browse the repository at this point in the history
  • Loading branch information
byshape committed Jan 3, 2024
1 parent 067d158 commit 88b89b4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,25 @@ jobs:
- run: yarn
- run: yarn coverage
- uses: codecov/codecov-action@v3

foundry:
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Run tests
run: forge test -vvv

# - name: Run snapshot
# run: forge snapshot

0 comments on commit 88b89b4

Please sign in to comment.