We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e561a6e commit 8ecd98aCopy full SHA for 8ecd98a
1 file changed
.github/workflows/dotnet.yml
@@ -9,17 +9,21 @@ on:
9
jobs:
10
build:
11
12
- runs-on: ubuntu-latest
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, windows-latest, macos-latest]
15
+
16
+ runs-on: ${{ matrix.os }}
17
18
steps:
- - uses: actions/checkout@v3
19
+ - uses: actions/checkout@v5
20
- name: Setup .NET
- uses: actions/setup-dotnet@v2
21
+ uses: actions/setup-dotnet@v5
22
with:
23
dotnet-version: 9.0.x
24
- name: Restore dependencies
25
run: dotnet restore
26
- name: Build
27
run: dotnet build --no-restore -c Release
28
- name: Test
- run: dotnet test --no-build --verbosity normal -c Release -f net9.0
29
+ run: dotnet test --no-build --verbosity normal -c Release
0 commit comments