From a7b8c1778ea3207e81ed3cb50a017b09296832bc Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Thu, 21 Aug 2025 09:15:19 -0600 Subject: [PATCH] Checkout submodules in runner --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56aba55..510daa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v4 + with: + submodules: "true" - name: Install just run: | @@ -104,6 +106,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + submodules: "true" - name: Install build dependencies run: | @@ -176,6 +180,8 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 + with: + submodules: "true" # Install Rust (adds cargo/rustc to PATH) - name: Install Rust (stable)