Bump Swashbuckle.AspNetCore from 10.2.0 to 10.2.1 #919
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: Continuous Integration | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-and-test: | |
| name: Build & Test | |
| runs-on: windows-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| - name: Setup MSSQL | |
| uses: potatoqualitee/mssqlsuite@v1.12 | |
| with: | |
| install: localdb | |
| - name: Restore dependencies | |
| run: dotnet restore EF.Core.Database.Adapter.slnx | |
| - name: Build solution | |
| run: dotnet build EF.Core.Database.Adapter.slnx --configuration Release --no-restore | |
| - name: Run tests | |
| run: dotnet test EF.Core.Database.Adapter.slnx --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: test-results | |
| path: '**/TestResults/*.trx' |