File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed
Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change 1- name : .NET 6 CI
2- on : [push]
3-
4- jobs :
5- build :
6- runs-on : ubuntu-latest
7- name : Build and Test
8- steps :
9- - uses : actions/checkout@v2
10-
11- - uses : actions/setup-dotnet@v1
12- name : Setup .NET SDK
13- with :
14- dotnet-version : ' 6 .0.x'
15-
16- - name : Build
17- run : dotnet build src/Ninject.Web.AspNetCore.sln -c Release
18- - name : Test
19- run : dotnet test src/Ninject.Web.AspNetCore.sln -c Release
1+ name : .NET 7 CI
2+ on : [push]
3+
4+ jobs :
5+ build :
6+ runs-on : ubuntu-latest
7+ name : Build and Test
8+ steps :
9+ - uses : actions/checkout@v2
10+
11+ - uses : actions/setup-dotnet@v1
12+ name : Setup .NET SDK
13+ with :
14+ dotnet-version : ' 7 .0.x'
15+
16+ - name : Build
17+ run : dotnet build src/Ninject.Web.AspNetCore.sln -c Release
18+ - name : Test
19+ run : dotnet test src/Ninject.Web.AspNetCore.sln -c Release
You can’t perform that action at this time.
0 commit comments