We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407b4bd commit 5394bfeCopy full SHA for 5394bfe
.github/workflows/test.yml
@@ -16,6 +16,7 @@ env:
16
BACKEND_EOA: ${{ secrets.BACKEND_EOA }}
17
BACKEND_PK: ${{ secrets.BACKEND_PK }}
18
NFT_BASE_URI: https://dev.back.chatterpay.net/nft/metadata/opensea/
19
+ FOUNDRY_DISABLE_NIGHTLY_WARNING: 1
20
21
jobs:
22
check:
@@ -29,6 +30,15 @@ jobs:
29
30
with:
31
submodules: recursive
32
33
+ - name: Set up cache for Foundry
34
+ uses: actions/cache@v3
35
+ with:
36
+ path: |
37
+ .forge-cache
38
+ lib
39
+ key: ${{ runner.os }}-forge-cache-${{ hashFiles('**/*.sol') }}
40
+ restore-keys: |
41
+
42
- name: Initialize and update submodules
43
run: |
44
git submodule update --init --recursive
0 commit comments