Skip to content

Commit de4885f

Browse files
Update dotnet.yml
1 parent 80b53a4 commit de4885f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/dotnet.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v2
16-
- name: Setup .NET
16+
- name: Setup .NET 5.0
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 6.0.x
19+
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
2024
- name: Restore dependencies
2125
run: dotnet restore
2226
- name: Build
2327
run: dotnet build --no-restore
2428
- name: Test
25-
run: dotnet test --no-build --verbosity normal --filter FullyQualifiedName!~ListShuffle.Tests.Net50
29+
run: dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)