Skip to content

Updating release notes #6

Updating release notes

Updating release notes #6

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 5.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Setup .NET Core 2.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.0.x
- name: Restore dependencies
run: dotnet restore mbcache.sln
- name: Build
run: dotnet build --no-restore mbcache.sln
- name: Test
run: dotnet test --no-build --verbosity normal mbcache.sln