refactor CI matrix

This commit is contained in:
Yaakov 2021-09-25 23:31:05 +10:00
parent ffa89f5845
commit 74c7070e38

View file

@ -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