From f2ec9e5115c13db730f45bde14e84aa43fb3896a Mon Sep 17 00:00:00 2001 From: Laurent Egbakou <26142591+egbakou@users.noreply.github.com> Date: Sun, 17 Dec 2023 21:11:43 +0100 Subject: [PATCH] chore(ci-core): revert matrix usage --- .github/workflows/ci-core.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-core.yml b/.github/workflows/ci-core.yml index e7693d3..4451f79 100644 --- a/.github/workflows/ci-core.yml +++ b/.github/workflows/ci-core.yml @@ -48,9 +48,6 @@ jobs: name: Container Tests runs-on: ubuntu-latest timeout-minutes: 10 - strategy: - matrix: - dotnet: [ '8.0.x', '7.0.x', '6.0.x' ] steps: - name: Check out code uses: actions/checkout@v3 @@ -58,7 +55,10 @@ jobs: - name: Install .NET Core SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: ${{ matrix.dotnet }} + dotnet-version: | + 8.0.x + 7.0.x + 6.0.x - name: Run tests run: dotnet test -c Release /p:CollectCoverage=true /p:CoverletOutput=TestResult /p:CoverletOutputFormat=lcov