Skip to content

Upgrade nswag to 14.2.0 #97

Upgrade nswag to 14.2.0

Upgrade nswag to 14.2.0 #97

Workflow file for this run

name: build
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
- "readme.md"
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore