Skip to content

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #155

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0

Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #155

Workflow file for this run

name: CI
on:
push:
branches: [mainstream]
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.txt'
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 30
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Run tests (Debug)
uses: zyborg/dotnet-tests-report@v1
with:
project_path: tests/Recursiont.Tests
msbuild_configuration: Debug
report_name: recursiont_tests_debug
github_token: ${{ secrets.GITHUB_TOKEN }}
# We need to run the tests in both Debug and release mode to uncover
# possible subtle bugs around the state machines being classes vs structs.
- name: Run tests (Release)
uses: zyborg/dotnet-tests-report@v1
with:
project_path: tests/Recursiont.Tests
msbuild_configuration: Release
report_name: recursiont_tests_release
github_token: ${{ secrets.GITHUB_TOKEN }}