From b5f4ea9c423680fa570abcc1007b40e991defb54 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Sat, 16 Mar 2024 21:28:49 +0100 Subject: [PATCH] ci: Get rid of dedicated submodules step Signed-off-by: Sam Therapy --- .gitea/workflows/test.yaml | 5 ++--- .github/workflows/test.yaml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index efe6ee2..4cba62e 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,9 +17,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - - name: Checkout submodules - run: git submodule update --init --recursive + with: + submodules: recursive - name: Test run: make test-ci diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 59f6bdd..62e09fd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,9 +17,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - - name: Checkout submodules - run: git submodule update --init --recursive + with: + submodules: recursive - name: Test run: make test-ci