Skip to content

Commit 1c7eefd

Browse files
Merge branch 'main' into develop
2 parents 93c438f + 130a393 commit 1c7eefd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/contract-verify.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ jobs:
3232
# Checkout repo to use files of the repo as input for container action
3333
- name: Checkout
3434
uses: actions/checkout@v4
35+
with:
36+
submodules: 'true'
3537
- name: Find all contract files to verify
3638
id: filepaths
3739
run: |
38-
files=$(find src/contracts/ -maxdepth 1 -type f -name "*.h" ! -name "*QUtil*" ! -name "*TestExample*" ! -name "*math_lib*" ! -name "*qpi*" -printf "%p\n" | paste -sd, -)
40+
files=$(find src/contracts/ -maxdepth 1 -type f -name "*.h" ! -name "*TestExample*" ! -name "*math_lib*" ! -name "*qpi*" -printf "%p\n" | paste -sd, -)
3941
echo "contract-filepaths=$files" >> "$GITHUB_OUTPUT"
4042
- name: Contract verify action step
4143
id: verify
42-
uses: Franziska-Mueller/qubic-contract-verify@v1.0.5
44+
uses: Franziska-Mueller/qubic-contract-verify@main
4345
with:
4446
filepaths: '${{ steps.filepaths.outputs.contract-filepaths }}'

0 commit comments

Comments
 (0)