Skip to content

build(deps): bump NSwag.ApiDescription.Client from 14.1.0 to 14.2.0 #193

build(deps): bump NSwag.ApiDescription.Client from 14.1.0 to 14.2.0

build(deps): bump NSwag.ApiDescription.Client from 14.1.0 to 14.2.0 #193

Workflow file for this run

name: build and test
on:
push:
pull_request:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'
workflow_call:
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
with:
repository: ZNotify/cs-sdk
- uses: ZNotify/test-server-action@master
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal