Skip to content

[CI] Fix workflow run and add tests back into solution's Release builds. #81

[CI] Fix workflow run and add tests back into solution's Release builds.

[CI] Fix workflow run and add tests back into solution's Release builds. #81

Workflow file for this run

name: verify-build
on:
push:
branches: [ main, next, mp/workflow_tests ]
pull_request:
branches: [ main, next ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
platform:
- MSFS
- FSX
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
- name: Build
run: dotnet build --configuration Release -p:Platform=${{ matrix.platform }}
- name: Test
run: dotnet test --verbosity normal --configuration Release -p:Platform=${{ matrix.platform }}