Skip to content

Commit 64ef10e

Browse files
committed
Updating github actions to run on .NET 7
1 parent f1c7e44 commit 64ef10e

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
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

0 commit comments

Comments
 (0)