Skip to content

Commit 52ba439

Browse files
[NOJIRA] Add forge test to test.yml (#104)
* Add forge test to test.yml * Fix workflow * libs in CI profile * Set foundry profile in CI * Install dependencies in CI
1 parent e84dd98 commit 52ba439

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ on:
77
branches: [main]
88

99
jobs:
10+
forge-test:
11+
name: Run Forge Tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
submodules: recursive
17+
- name: Install Foundry
18+
uses: foundry-rs/foundry-toolchain@v1
19+
- name: Install dependencies
20+
run: yarn install --frozen-lockfile
21+
- name: Run tests
22+
run: forge test -vvv
1023
hardhat-test:
1124
name: Run Hardhat Tests
1225
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)