Skip to content

Merge remote-tracking branch 'origin/master' #5

Merge remote-tracking branch 'origin/master'

Merge remote-tracking branch 'origin/master' #5

Workflow file for this run

name: CI tests
on:
pull_request:
push:
- master
jobs:
test:
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --configuration Release --no-restore --no-build --nologo