We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87bc05b commit 89270afCopy full SHA for 89270af
.github/workflows/ci.yml
@@ -20,8 +20,8 @@ permissions: {}
20
21
jobs:
22
build-test:
23
- name: ${{ matrix.os }}
24
- runs-on: ${{ matrix.os }}
+ name: ${{ matrix.os-name }}
+ runs-on: ${{ matrix.runner }}
25
26
outputs:
27
dotnet-sdk-version: ${{ steps.setup-dotnet.outputs.dotnet-version }}
@@ -34,14 +34,13 @@ jobs:
34
strategy:
35
fail-fast: false
36
matrix:
37
- os: [ macos-latest, ubuntu-latest, windows-latest ]
38
include:
39
- - os: macos-latest
40
- os-name: macos
41
- - os: ubuntu-latest
42
- os-name: linux
43
- - os: windows-latest
44
- os-name: windows
+ - os-name: macos
+ runner: macos-latest
+ - os-name: linux
+ runner: ubuntu-latest
+ - os-name: windows
+ runner: windows-latest
45
46
steps:
47
0 commit comments