File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Matrix Testing:
34
34
` ` ` yaml
35
35
jobs :
36
36
build :
37
- runs-on : ubuntu-16.04
37
+ runs-on : ubuntu-latest
38
38
strategy :
39
39
matrix :
40
40
dotnet : [ '2.2.103', '3.0', '3.1.x' ]
48
48
- run : dotnet build <my project>
49
49
` ` `
50
50
51
+ Side by Side Testing:
52
+ ` ` ` yaml
53
+ jobs :
54
+ build :
55
+ runs-on : ubuntu-latest
56
+ name : Dotnet Side by Side testing sample
57
+ steps :
58
+ - uses : actions/checkout@v2
59
+ - name : Setup dotnet
60
+ uses : actions/setup-dotnet@v1
61
+ with :
62
+ dotnet-version : ' 2.2.103'
63
+ - name : Setup dotnet
64
+ uses : actions/setup-dotnet@v1
65
+ with :
66
+ dotnet-version : ' 3.1.x'
67
+ - run : dotnet build <my project>
68
+ - run : dotnet test <my project>
69
+ ` ` `
70
+
51
71
Authentication for nuget feeds:
52
72
` ` ` yaml
53
73
steps :
You can’t perform that action at this time.
0 commit comments