Adding to Open Protocol docs #90
This file contains hidden or 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 | |
| 8.0.x | |
| 10.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: Setup .NET Core | |
| uses: actions/setup-dotnet@master | |
| with: | |
| dotnet-version: | | |
| 3.1.x | |
| 6.0.x | |
| 8.0.x | |
| 10.0.x | |
| - name: Build and run .net core tests | |
| run: | | |
| dotnet build src/MIDTesters.Core/MIDTesters.Core.csproj | |
| dotnet test src/MIDTesters.Core/MIDTesters.Core.csproj |