From 74c7070e38ebf19d9e76c7be8e6ab48b89b5095c Mon Sep 17 00:00:00 2001 From: Yaakov Date: Sat, 25 Sep 2021 23:31:05 +1000 Subject: [PATCH] refactor CI matrix --- .github/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6319ecc..6269f91 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,21 +6,21 @@ on: jobs: build: - name: .NET on ${{ matrix.os }} + name: ${{matrix.configuration}} - .NET on ${{ matrix.os }} strategy: matrix: os: - - ubuntu-latest - - macos-latest - - windows-latest + - ubuntu + - macos + - windows configuration: - - debug - - release + - Debug + - Release sdk: - 5.0.x - runs-on: ${{ matrix.os }} + runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@v2.3.4