mirror of
https://github.com/yaakov-h/Shamir.git
synced 2025-01-18 08:46:33 +00:00
refactor CI matrix
This commit is contained in:
parent
ffa89f5845
commit
74c7070e38
1 changed files with 7 additions and 7 deletions
14
.github/workflows/ci.yaml
vendored
14
.github/workflows/ci.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue