Skip to content

Commit ab90f92

Browse files
authored
Merge pull request #69 from Merit-Systems/feat/ci-tests
CI Tests
2 parents b057031 + 55199f8 commit ab90f92

File tree

3 files changed

+659
-0
lines changed

3 files changed

+659
-0
lines changed

.github/workflows/forge.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Forge Tests
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: Install Foundry
18+
uses: foundry-rs/foundry-toolchain@v1
19+
20+
- name: Run Forge Tests
21+
run: forge test --ffi --no-match-path test/utils
22+

0 commit comments

Comments
 (0)