We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af82e6 commit 84ab36dCopy full SHA for 84ab36d
1 file changed
.github/workflows/dotnet.yml
@@ -14,10 +14,14 @@ jobs:
14
- name: Setup .NET
15
uses: actions/setup-dotnet@v4
16
with:
17
- dotnet-version: [6.0.x, 7.0.x, 8.0.x, 9.0.x]
+ dotnet-version: |
18
+ 6.0.x
19
+ 7.0.x
20
+ 8.0.x
21
+ 9.0.x
22
- name: Restore dependencies
23
run: dotnet restore
24
- name: Build
25
run: dotnet build --no-restore /p:TreatWarningsAsErrors=false
26
- name: Test
- run: dotnet test --no-build --verbosity normal
27
+ run: dotnet test --no-build --verbosity normal
0 commit comments