Bump dotnet-ef from 8.0.2 to 10.0.8 #12
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up .NET 8 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore | |
| run: dotnet restore Qwertide.sln | |
| - name: Verify formatting | |
| run: dotnet format Qwertide.sln --verify-no-changes --no-restore | |
| - name: Build | |
| run: dotnet build Qwertide.sln --configuration Release --no-restore -warnaserror | |
| - name: Test | |
| run: dotnet test Qwertide.sln --configuration Release --no-build --verbosity normal |