We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80b53a4 commit de4885fCopy full SHA for de4885f
.github/workflows/dotnet.yml
@@ -13,13 +13,17 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v2
16
- - name: Setup .NET
+ - name: Setup .NET 5.0
17
uses: actions/setup-dotnet@v1
18
with:
19
- dotnet-version: 6.0.x
+ dotnet-version: 5.0.x
20
+ - name: Setup .NET 6.0
21
+ uses: actions/setup-dotnet@v1
22
+ with:
23
+ dotnet-version: 6.0.x
24
- name: Restore dependencies
25
run: dotnet restore
26
- name: Build
27
run: dotnet build --no-restore
28
- name: Test
- run: dotnet test --no-build --verbosity normal --filter FullyQualifiedName!~ListShuffle.Tests.Net50
29
+ run: dotnet test --no-build --verbosity normal
0 commit comments