Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,21 @@ jobs:

- name: Integration tests
run: cargo test --test integration --verbose

solidity-tests:
name: Solidity Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive

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

- name: Forge build
working-directory: contracts
run: forge build

- name: Forge test
working-directory: contracts
run: forge test -vvv
Loading