Skip to content

Commit

Permalink
chore: solidity CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed Feb 20, 2024
1 parent 483a883 commit f905338
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/solidity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push]

name: Solidity

jobs:
check:
name: forge test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: install foundry
uses: foundry-rs/foundry-toolchain@v1

- name: run tests
run: forge test --via-ir -vvv

- name: run snapshot
run: forge snapshot

0 comments on commit f905338

Please sign in to comment.