From c63a9e4f823e6d35cbaf228049f2e37161f245f1 Mon Sep 17 00:00:00 2001 From: Daniel Lacasse Date: Mon, 8 Jul 2024 11:37:39 -0400 Subject: [PATCH] Ensure submodules are checked out when building Signed-off-by: Daniel Lacasse --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 938336d2..a7dab77e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: Run all tests run: ./gradlew check --stacktrace --scan