We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c789820 commit 8a4e63fCopy full SHA for 8a4e63f
1 file changed
.github/workflows/dotnet.yml
@@ -15,11 +15,14 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v4
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+
21
- name: Setup .NET
22
uses: actions/setup-dotnet@v4
23
with:
- dotnet-version:
24
+ dotnet-version: '8.0.x'
25
26
- name: Cache NuGet
27
uses: actions/cache@v5
28
@@ -34,6 +37,6 @@ jobs:
34
37
- name: Build
35
38
run: dotnet build --no-restore --configuration Release
36
39
- - name: Test
- run: dotnet test --no-build --configuration Release --verbosity normal
40
+ - name: Test
41
+ run: dotnet test --no-build --configuration Release --verbosity normal
42
0 commit comments