Skip to content

Revert to net 6

Revert to net 6 #47

Workflow file for this run

name: .NET Core
on: [pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1.0.5
- name: Restore
run: nuget restore
- name: Build with dotnet
run: dotnet build --no-restore
- name: Run Test Suite
run: dotnet test --no-build