Skip to content

feat: register KillProcess when cancellation token canceled #386

feat: register KillProcess when cancellation token canceled

feat: register KillProcess when cancellation token canceled #386

Workflow file for this run

name: default
on:
push:
branches:
- "main"
- "dev"
pull_request:
# The branches below must be a subset of the branches above
branches:
- "main"
- "dev"
jobs:
build:
name: Running tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.x
7.x
8.x
- name: dotnet info
run: dotnet --info
- name: build
run: bash build.sh --target=test
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: build
shell: pwsh
run: .\build.ps1