Add bool continueOnCapturedContext
overloads
#1082
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: .Net Core Tests | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
dotnet-core-tests: | |
name: ${{ matrix.config }}-${{ matrix.objectPooling.name }}-${{ matrix.devMode.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: [Release, Debug] | |
objectPooling: | |
- { | |
name: Pool_Enabled, | |
symbol: PROTO_PROMISE_POOL_ENABLE | |
} | |
- { | |
name: Pool_Disabled, | |
symbol: PROTO_PROMISE_POOL_DISABLE | |
} | |
devMode: | |
- { | |
name: devMode, | |
value: true | |
} | |
- { | |
name: userMode, | |
value: false | |
} | |
exclude: | |
# DEBUG mode forces pooling disabled. | |
- { | |
config: Debug, | |
objectPooling: { name: Pool_Enabled } | |
} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.X | |
- name: Run Analyzer Tests | |
run: | | |
dotnet test ./ProtoPromise.Analyzer/ProtoPromise.Analyzer.Test/ProtoPromise.Analyzer.Test.csproj -c ${{ matrix.config }} -f net8.0 --logger "Console;Verbosity=normal" --logger "trx;logfilename=dotnet-test-results-net8.0-${{ matrix.config }}-${{ matrix.objectPooling.name }}-${{ matrix.devMode.name }}-analyzer.trx" -p:ExtraDefineConstants=${{ matrix.objectPooling.symbol }} -p:DeveloperMode=${{ matrix.devMode.value }} --results-directory "./TestResults" | |
timeout-minutes: 10 | |
- name: Run Core Tests | |
run: | | |
dotnet test ./ProtoPromiseTests/ProtoPromiseTests.csproj -c ${{ matrix.config }} -f net8.0 --logger "Console;Verbosity=normal" --logger "trx;logfilename=dotnet-test-results-net8.0-${{ matrix.config }}-${{ matrix.objectPooling.name }}-${{ matrix.devMode.name }}-core.trx" -p:ExtraDefineConstants=${{ matrix.objectPooling.symbol }} -p:DeveloperMode=${{ matrix.devMode.value }} --results-directory "./TestResults" | |
timeout-minutes: 120 | |
- uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: dotnet-test-results-net8.0-${{ matrix.config }}-${{ matrix.objectPooling.name }}-${{ matrix.devMode.name }} | |
path: TestResults/*.trx | |
reporter: dotnet-trx | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: dotnet-test-results-net8.0-${{ matrix.config }}-${{ matrix.objectPooling.name }}-${{ matrix.devMode.name }} | |
path: TestResults |