From fa9fb1148de13b04400be546e5e9c2e369e7a691 Mon Sep 17 00:00:00 2001 From: Lennard Kittner Date: Sat, 15 Nov 2025 17:11:45 +0100 Subject: [PATCH] Enable recursive submodule checkout in CI workflows --- .github/workflows/rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e5d5362..5a7abe0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,6 +14,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v3 + with: + submodules: recursive - name: Build run: cargo build --verbose --bin hyper_headset_cli - name: test @@ -23,9 +25,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + submodules: recursive - name: Install Dependencies run: sudo apt update && sudo apt install -y libdbus-1-dev libhidapi-dev libusb-1.0-0-dev libudev-dev - name: Build run: cargo build --verbose - name: test - run: cargo test \ No newline at end of file + run: cargo test