From bba2327aec5867824a5bb3fb967a88af202f3911 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Mon, 25 May 2020 22:37:38 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4e2c74a6..80d184157 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ env: DOTNET_CLI_TELEMETRY_OPTOUT: 1 DOTNET_SDK_VERSION: 3.1.300 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 - GITHUB_JOBS: 2 # 2-core CPU, without HT: https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources NET_CORE_VERSION: netcoreapp3.1 NET_FRAMEWORK_VERSION: net48 NODE_JS_VERSION: 12 @@ -23,12 +22,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - - name: Sync git submodules - run: git submodule sync --recursive - - - name: Update git submodules - run: git submodule update -j ${{ env.GITHUB_JOBS }} --init --recursive + with: + submodules: recursive - name: Setup .NET Core uses: actions/setup-dotnet@v1