File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 }}'
You can’t perform that action at this time.
0 commit comments