Skip to content

Bump Swashbuckle.AspNetCore.SwaggerUI from 6.5.0 to 6.6.1 in /ShaclService #179

Bump Swashbuckle.AspNetCore.SwaggerUI from 6.5.0 to 6.6.1 in /ShaclService

Bump Swashbuckle.AspNetCore.SwaggerUI from 6.5.0 to 6.6.1 in /ShaclService #179

Workflow file for this run

name: CI
env:
CONFIGURATION: Release
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
include-prerelease: true
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration $Env:CONFIGURATION
- name: Test
run: dotnet test --no-build --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
- name: Codecov
uses: codecov/codecov-action@v2