We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b144d6 commit 7543654Copy full SHA for 7543654
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,20 @@
1
+name: Test Cohort 4 Contracts
2
+on:
3
+ push:
4
+ pull_request:
5
+jobs:
6
+ check:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+
11
+ - name: Setup Starknet Foundry
12
+ uses: foundry-rs/setup-snfoundry@v3
13
14
+ - name: Setup Scarb
15
+ uses: software-mansion/setup-scarb@v1
16
+ with:
17
+ scarb-lock: ../../Scarb.lock
18
19
+ - name: Run tests
20
+ run: snforge test
0 commit comments