Fix not to use T4 for th15 template files #1933
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
target-framework: [net48, net6.0-windows, net8.0-windows] | |
uses: ./.github/workflows/_build.yml | |
with: | |
python-version: '3.x' | |
dotnet-configuration: ${{ matrix.configuration }} | |
dotnet-target-framework: ${{ matrix.target-framework }} | |
artifact-name: 'ThScoreFileConverter.${{ matrix.configuration }}.${{ matrix.target-framework }}' |