fixed tests #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dotnetcore | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@master | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
- name: Build library (.net core) | |
run: dotnet build src/OpenProtocolInterpreter/OpenProtocolInterpreter.csproj --configuration release | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Build and run .net core tests | |
uses: actions/setup-dotnet@master | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
- name: Test Mids | |
run: | | |
dotnet build src/MIDTesters.Core/MIDTesters.Core.csproj | |
dotnet test src/MIDTesters.Core/MIDTesters.Core.csproj |