From c3022e567ca7b9fcf279f09c51f5904cf4b1281c Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sat, 19 Oct 2024 16:30:36 +0200 Subject: [PATCH] checkout submodules in github action --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 86f2771..0eb85b9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,6 +16,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: 'true' - name: build default features run: cargo build --all --verbose