Merge pull request #15 from lord-executor/feature/dotnet-9-update #51
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |