Skip to content

Bump Swashbuckle.AspNetCore from 6.4.0 to 6.5.0 #17

Bump Swashbuckle.AspNetCore from 6.4.0 to 6.5.0

Bump Swashbuckle.AspNetCore from 6.4.0 to 6.5.0 #17

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- '**' # matches every branch
- '!main' # excludes main
env:
PROJECT_PATH: 'src/SegregatedStorage/SegregatedStorage.csproj'
SOLUTION_PATH: 'SegregatedStorage.sln'
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output
NUGET_SOURCE_URL: 'https://api.nuget.org/v3/index.json'
jobs:
test:
name: 'test'
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Install dotnet'
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: 'Restore packages'
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Test
run: dotnet test ${{ env.SOLUTION_PATH }}