Skip to content

Commit 8795a4e

Browse files
author
joseftw
committed
Dotnet 8 in ci
1 parent 5d7b754 commit 8795a4e

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
name: .NET
2-
32
on:
43
push:
54
branches: [ develop ]
65
pull_request:
76
branches: [ develop ]
8-
97
jobs:
108
build:
11-
129
runs-on: ubuntu-latest
13-
1410
steps:
15-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1612
- name: Setup .NET
17-
uses: actions/setup-dotnet@v1
13+
uses: actions/setup-dotnet@v3
1814
with:
19-
dotnet-version: 6.0.x
20-
- name: Restore dependencies
21-
run: dotnet restore
22-
- name: Build
23-
run: dotnet build -c Release --no-restore
24-
- name: Test
25-
run: dotnet test -c Release --no-build --verbosity normal
15+
dotnet-version: |
16+
8.0.x
17+
dotnet-quality: 'ga'
18+
- name: Verify
19+
run: dotnet test -c Release --verbosity normal

JOS.ApiKeyAuthentication.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JOS.ApiKeyAuthentication.We
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JOS.ApiKeyAuthentication.Web.Tests", "test\JOS.ApiKeyAuthentication.Web.Tests\JOS.ApiKeyAuthentication.Web.Tests.csproj", "{9EBD5C5D-4CED-4188-99A7-F1783A355D0B}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "misc", "misc", "{7391201F-7150-4899-A34C-2725A6E7E3D5}"
11+
ProjectSection(SolutionItems) = preProject
12+
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
13+
EndProjectSection
14+
EndProject
1015
Global
1116
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1217
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)