We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90bd07 commit 7fbdf07Copy full SHA for 7fbdf07
.github/workflows/dotnet.yml
@@ -14,20 +14,16 @@ jobs:
14
name: Build with .NET ${{ matrix.netversion }}
15
runs-on: ubuntu-latest
16
17
- strategy:
18
- matrix:
19
- netversion: [7, 8, 9]
20
-
21
steps:
22
- uses: actions/checkout@v3
23
- - name: Setup .NET ${{ matrix.netversion }}
+ - name: Setup .NET 9
24
uses: actions/setup-dotnet@v3
25
with:
26
- dotnet-version: ${{ matrix.netversion }}.x
+ dotnet-version: 9.x
27
- name: Restore
28
run: dotnet restore
29
- name: Build
30
- run: dotnet build --no-restore --framework net${{ matrix.netversion }}.0 --runtimes net${{ matrix.netversion }}.0
+ run: dotnet build --no-restore
31
- name: Upload
32
uses: actions/upload-artifact@v4
33
0 commit comments