File tree 1 file changed +12
-11
lines changed
1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change 13
13
14
14
env :
15
15
DOTNET_CLI_TELEMETRY_OPTOUT : true
16
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
16
+ DOTNET_NOLOGO : true
17
17
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION : 1
18
+ FORCE_COLOR : 3
18
19
NUGET_XMLDOC_MODE : skip
19
20
TERM : xterm
20
21
@@ -23,8 +24,9 @@ permissions:
23
24
24
25
jobs :
25
26
build :
26
- name : ${{ matrix.os }}
27
- runs-on : ${{ matrix.os }}
27
+ name : ${{ matrix.os-name }}
28
+ runs-on : ${{ matrix.runner }}
29
+ timeout-minutes : 20
28
30
29
31
outputs :
30
32
dotnet-sdk-version : ${{ steps.setup-dotnet.outputs.dotnet-version }}
@@ -39,15 +41,14 @@ jobs:
39
41
40
42
strategy :
41
43
fail-fast : false
42
- matrix :
43
- os : [ macos-latest, ubuntu-latest, windows-latest ]
44
+ matrix :
44
45
include :
45
- - os : macos-latest
46
- os-name : macos
47
- - os : ubuntu-latest
48
- os-name : linux
49
- - os : windows-latest
50
- os-name : windows
46
+ - os-name : macos
47
+ runner : macos-latest
48
+ - os-name : linux
49
+ runner : ubuntu-latest
50
+ - os-name : windows
51
+ runner : windows-latest
51
52
52
53
steps :
53
54
You can’t perform that action at this time.
0 commit comments