Windows #76
Workflow file for this run
This file contains hidden or 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: Windows | |
on: | |
# Allow to use "gh.exe workflow run Windows --ref <branchname>" to trigger this workflow for arbitrary branches. | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
runs-on: ['windows-latest'] | |
configuration: [Debug, Release] | |
dotnet-version: ['8.0.x'] | |
tfm: ['net8.0', 'net481'] | |
uses: ./.github/workflows/dotnet-reusable-workflow.yml | |
with: | |
runs-on: ${{ matrix.runs-on }} | |
dotnet-version: ${{ matrix.dotnet-version }} | |
configuration: ${{ matrix.configuration }} | |
tfm: ${{ matrix.tfm }} | |
code-coverage: true |