remove check for no contraint. We have always a constraint now with e… #63
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 10 CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build and Test | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-dotnet@v5 | |
| name: Setup .NET SDK | |
| with: | |
| dotnet-version: '10.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 |