Skip to content

Merge pull request #77 from ZjzMisaka/master #222

Merge pull request #77 from ZjzMisaka/master

Merge pull request #77 from ZjzMisaka/master #222

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test --configuration Release
TestOnLinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
- name: Build with dotnet
run: dotnet build --configuration Release -f netcoreapp3.1
- name: Test with dotnet
run: dotnet test --configuration Release --no-build -f netcoreapp3.1
- name: Run Infer#
uses: microsoft/infersharpaction@v1.2
with:
binary-path: AsyncWorkerCollection/bin/Release/netcoreapp3.1
TestOnMac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
- name: Build with dotnet
run: dotnet build --configuration Release -f netcoreapp3.1
- name: Test with dotnet
run: dotnet test --configuration Release --no-build -f netcoreapp3.1