From ac1c6396e3e35e246fb9aabcfc0632fbd41c7c26 Mon Sep 17 00:00:00 2001 From: wangyunlai Date: Thu, 20 Oct 2022 14:26:58 +0800 Subject: [PATCH] checkout submodule recursive --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec597e6..d8090b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout repository and submodules + uses: actions/checkout@v2 + with: + submodules: recursive - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. -- GitLab