Skip to content

[WIP] Public Testing Frameworks #325

[WIP] Public Testing Frameworks

[WIP] Public Testing Frameworks #325

Workflow file for this run

name: Build & Test
on:
workflow_call:
workflow_dispatch:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build-test:
name: Build & Test
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Build & Test in Release Mode
run: dotnet test --configuration Release --report-github
# Ignore exit code 8 on Linux (zero tests are now allowed)
# TODO: Remove this when linux is supported
env:
TESTINGPLATFORM_EXITCODE_IGNORE: ${{ matrix.os == 'ubuntu-latest' && '8' || '' }}