We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43d6ecc commit f260d7fCopy full SHA for f260d7f
1 file changed
.github/workflows/ci.yml
@@ -18,9 +18,13 @@ concurrency:
18
jobs:
19
# Keep the Windows build separate so we still validate the .NET Framework target
20
# and the packaging prerequisites that only exist on Windows runners.
21
- build-windows:
22
- name: Build (Windows)
23
- runs-on: windows-latest
+ build:
+ name: Build (${{ matrix.os }})
+ runs-on: ${{ matrix.os }}
24
+ strategy:
25
+ fail-fast: false
26
+ matrix:
27
+ os: [ubuntu-latest, windows-latest]
28
29
steps:
30
- name: Checkout
@@ -68,7 +72,7 @@ jobs:
68
72
# The matrix is therefore per target framework instead of per OS.
69
73
test-modern-tfm-linux:
70
74
name: Test (Linux, ${{ matrix.tfm }})
71
- runs-on: ubuntu-24.04
75
+ runs-on: ubuntu-latest
76
strategy:
77
fail-fast: false
78
matrix:
0 commit comments