We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c1416 commit 5433629Copy full SHA for 5433629
.github/workflows/dotnetcore.yml
@@ -36,24 +36,17 @@ jobs:
36
with:
37
dotnet-version: |
38
2.1.x
39
- 6.0.x
40
- 7.0.x
41
8.0.x
+ 9.0.x
42
43
- - name: Run .NET 8 Tests
44
- run: dotnet test -f net8.0
45
- shell: bash
46
- env:
47
- REDIS_HOST: localhost
48
-
49
- - name: Run .NET 7 Tests
50
- run: dotnet test -f net7.0 --verbosity quiet
+ - name: Run .NET 9 Tests
+ run: dotnet test -f net9.0
51
shell: bash
52
env:
53
REDIS_HOST: localhost
54
55
- - name: Run .NET 6 Tests
56
- run: dotnet test -f net6.0 --verbosity quiet
+ - name: Run .NET 8 Tests
+ run: dotnet test -f net8.0
57
58
59
@@ -71,9 +64,8 @@ jobs:
71
64
72
65
73
66
74
75
76
67
68
77
69
78
70
- name: Build with dotnet
79
run: ./NuGetPack.bat
0 commit comments