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:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: .NET on ${{ matrix.os }}
|
name: ${{matrix.configuration}} - .NET on ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu
|
||||||
- macos-latest
|
- macos
|
||||||
- windows-latest
|
- windows
|
||||||
configuration:
|
configuration:
|
||||||
- debug
|
- Debug
|
||||||
- release
|
- Release
|
||||||
sdk:
|
sdk:
|
||||||
- 5.0.x
|
- 5.0.x
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.4
|
- uses: actions/checkout@v2.3.4
|
||||||
|
|
Loading…
Reference in a new issue