Skip to content

Avoiding Mono's ParameterInfo[].AsSpan() bug #680

Avoiding Mono's ParameterInfo[].AsSpan() bug

Avoiding Mono's ParameterInfo[].AsSpan() bug #680

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [ main, release/2.x ]
jobs:
windows:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Test
run: dotnet test --configuration Release --logger GitHubActions
linux:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Test
run: dotnet test --configuration Release --logger GitHubActions
macos:
runs-on: macos-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Test
run: dotnet test --configuration Release --logger GitHubActions