Skip to content

Bump Swashbuckle.AspNetCore.Annotations from 10.1.7 to 10.2.1 #921

Bump Swashbuckle.AspNetCore.Annotations from 10.1.7 to 10.2.1

Bump Swashbuckle.AspNetCore.Annotations from 10.1.7 to 10.2.1 #921

Workflow file for this run

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'