Skip to content

Commit 8b69c40

Browse files
committed
Merge branch 'master' into chrispat-patch-1
2 parents 36d5986 + c735880 commit 8b69c40

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ubuntu-latest
12+
runs-on: ${{ matrix.image }}
13+
strategy:
14+
matrix:
15+
image: ['ubuntu-latest', 'windows-latest', 'macos-latest']
1316

1417
steps:
1518
- uses: actions/checkout@v2

azure-pipelines.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ pr:
1212
- master
1313

1414
pool:
15-
vmImage: 'ubuntu-latest'
15+
vmImage: $(image)
16+
17+
strategy:
18+
matrix:
19+
mac-os:
20+
image: 'macos-latest'
21+
windows:
22+
image: 'windows-latest'
23+
linux:
24+
image: 'ubuntu-latest'
1625

1726
variables:
1827
buildConfiguration: 'Release'

0 commit comments

Comments
 (0)