Skip to content

Bumped version

Bumped version #110

Workflow file for this run

name: Build and test
on:
push:
branches: [ master, 'v*' ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core 2
uses: actions/setup-dotnet@v3
with:
dotnet-version: 2.1.x
- name: Setup .NET 5
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal