Skip to content

Commit 8a4e63f

Browse files
committed
Small changes in Workflow
1 parent c789820 commit 8a4e63f

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
1921
- name: Setup .NET
2022
uses: actions/setup-dotnet@v4
2123
with:
22-
dotnet-version:
24+
dotnet-version: '8.0.x'
25+
2326
- name: Cache NuGet
2427
uses: actions/cache@v5
2528
with:
@@ -34,6 +37,6 @@ jobs:
3437
- name: Build
3538
run: dotnet build --no-restore --configuration Release
3639

37-
- name: Test
38-
run: dotnet test --no-build --configuration Release --verbosity normal
40+
- name: Test
41+
run: dotnet test --no-build --configuration Release --verbosity normal
3942

0 commit comments

Comments
 (0)