We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d09a05 commit 0479e9aCopy full SHA for 0479e9a
.github/workflows/contracts-testing.yml
@@ -132,13 +132,15 @@ jobs:
132
133
- name: Install Foundry
134
run: |
135
- curl -L https://foundry.paradigm.xyz | bash
136
- exec bash
137
- foundryup
+ cd contracts
+ wget https://github.com/foundry-rs/foundry/releases/download/v1.3.4/foundry_v1.3.4_linux_amd64.tar.gz
+ tar -xzf foundry_v1.3.4_linux_amd64.tar.gz
138
+ ls -la
139
+ ./forge --version
140
# uses: foundry-rs/foundry-toolchain@82dee4ba654bd2146511f85f0d013af94670c4de # v1.4.0
141
142
- name: Run Foundry tests
- run: cd contracts && forge test
143
+ run: cd contracts && ./forge test
144
# working-directory: contracts
145
146
- name: Run snapshot
0 commit comments