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