Skip to content

Version update to 1.0.26 to fix version parity between nuget and npm … #43

Version update to 1.0.26 to fix version parity between nuget and npm …

Version update to 1.0.26 to fix version parity between nuget and npm … #43

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: source
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal -p:ParallelizeTestCollections=false