Skip to content

Commit 4ac9aba

Browse files
committed
[eclipse-uprotocol#230] Recurse submodules when checking out repo
The workflow for checking if the code can be compiled using the latest versions of 3rd party dependencies had failed sporadically because the uProtocol API proto3 files had not been available. This was due to the fact that the up-spec submodule had not been properly initialized during checkout.
1 parent 2cb2e11 commit 4ac9aba

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/verify-latest-deps.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
3434
steps:
3535
- uses: actions/checkout@v4
36+
with:
37+
submodules: "recursive"
3638
- run: rustup update stable && rustup default stable
3739
- run: cargo update --verbose
3840
- run: cargo build --verbose --all-features

0 commit comments

Comments
 (0)