From 7a0136b071f3d6de892f23c4726bb3cfd02fd0df Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 25 Mar 2020 20:23:47 +0100 Subject: [PATCH] ci: Fix submodule cloning --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e78fb51..f999303 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,9 +5,13 @@ on: [push, pull_request] jobs: windows: runs-on: windows-2019 + name: "Windows" steps: - name: "Clone Repository" uses: actions/checkout@v1 + - name: "Clone Submodules" + shell: bash + run: git submodule update --init --recursive - name: "Configure Project" shell: bash run: | @@ -36,9 +40,13 @@ jobs: path: build/package windows-speed: runs-on: windows-2019 + name: "Windows (Performance)" steps: - name: "Clone Repository" uses: actions/checkout@v1 + - name: "Clone Submodules" + shell: bash + run: git submodule update --init --recursive - name: "Configure Project" shell: bash run: |