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