From 189911c70cf3f8600aa5aaff8b37dc179d905d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20BRIOL?= Date: Fri, 28 Jun 2024 18:29:43 +0200 Subject: [PATCH] chore: Update CI workflow to include recursive submodules in checkout step --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fabde25..5a0d164 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + submodules: recursive - name: Setup Miniconda uses: mamba-org/setup-micromamba@v1 @@ -53,7 +55,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + submodules: recursive - name: Setup Miniconda uses: mamba-org/setup-micromamba@v1