Fix to use IntegerParser for th09.5 and th12.5 #2279
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: [net8.0-windows, net9.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 }}' | |
secrets: inherit |