Skip to content

Bump version number to 1.4.2.0. #73

Bump version number to 1.4.2.0.

Bump version number to 1.4.2.0. #73

Workflow file for this run

name: verify-build
on:
push:
branches: [ main, next, mp/workflow_tests ]
pull_request:
branches: [ main, next ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
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-restore --verbosity normal