Skip to content

Bump Swashbuckle.AspNetCore from 10.0.1 to 10.1.0 #139

Bump Swashbuckle.AspNetCore from 10.0.1 to 10.1.0

Bump Swashbuckle.AspNetCore from 10.0.1 to 10.1.0 #139

name: Build test and pack
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
name: Build test and pack
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Debug --no-restore
- name: Test
run: dotnet test -c Debug --no-build --verbosity normal
- name: Pack
run: dotnet pack -c Debug --no-build --verbosity normal