Skip to content

Merge pull request #15 from lord-executor/feature/dotnet-9-update #51

Merge pull request #15 from lord-executor/feature/dotnet-9-update

Merge pull request #15 from lord-executor/feature/dotnet-9-update #51

Workflow file for this run

name: .NET 9 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build and Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
name: Setup .NET SDK
with:
dotnet-version: '9.0.x'
- name: Build
run: dotnet build src/Ninject.Web.AspNetCore.sln -c Release
- name: Test
run: dotnet test src/Ninject.Web.AspNetCore.sln -c Release