From f83281867d09e43294571cf93f7ac24a7446dc1b Mon Sep 17 00:00:00 2001 From: Salomon Popp Date: Thu, 18 Jan 2024 15:15:01 +0100 Subject: [PATCH] Checkout git submodule in CI --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 384baecc2..0607a1277 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,11 +17,13 @@ jobs: os: - ubuntu-22.04 - windows-2022 - python-version: [ "3.10", "3.11" ] + python-version: ["3.10", "3.11"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 + with: + submodules: true - name: Install Python and set up Poetry uses: bakdata/ci-templates/actions/python-setup-poetry@v1.5.3