From 6eb2cc6c26c9e348e15b638e8cfd4f18f888d373 Mon Sep 17 00:00:00 2001 From: aya Date: Sun, 16 Mar 2025 16:03:53 +0200 Subject: [PATCH] fetch submodule --- .github/workflows/endurancce_test.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/endurancce_test.yml b/.github/workflows/endurancce_test.yml index 6b1f14f..8974a21 100644 --- a/.github/workflows/endurancce_test.yml +++ b/.github/workflows/endurancce_test.yml @@ -9,9 +9,20 @@ jobs: repeated-tests: runs-on: ubuntu-latest - steps: - - name: Check out repo + steps: + - name: Check out repository uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + + - name: Initialize & update submodules + run: git submodule update --init --recursive + + - name: Prepare third_party directory + run: | + sudo mkdir -p third_party + sudo chown $USER third_party - name: Set up Go uses: actions/setup-go@v4