Skip to content

Merge branch 'main' into develop #273

Merge branch 'main' into develop

Merge branch 'main' into develop #273

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@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build & Test in Release Mode
run: dotnet test --configuration Release --logger "GitHubActions"