chore: fix action to pull submodules
All checks were successful
CI / build-and-test (push) Successful in 1m44s
CI / build-and-test (pull_request) Successful in 1m55s

This commit is contained in:
2025-11-11 17:55:47 +13:00
parent 48580d0278
commit 2c1c64049c

View File

@@ -8,8 +8,13 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
- name: Check out repository (with submodules)
uses: actions/checkout@v4
with:
# Ensure submodules (like external/angelscript and external/raylib) are checked out.
submodules: true
# Fetch full history so submodules can be cloned properly.
fetch-depth: 0
- name: Install system dependencies
run: |