TweenMainのコンストラクタに対するテストコードを追加 #9
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: Run tests | |
on: | |
push: | |
branches: ['develop', 'release'] | |
pull_request: | |
env: | |
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
test: | |
runs-on: windows-2022 | |
needs: [build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Set configuration env | |
shell: pwsh | |
run: | | |
if ($env:GITHUB_REF -eq 'refs/heads/release') { | |
echo 'CONFIGURATION=Release' >> $env:GITHUB_ENV | |
} else { | |
echo 'CONFIGURATION=Debug' >> $env:GITHUB_ENV | |
} | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/.nuget/packages | |
key: nuget-${{ hashFiles('*/*.csproj') }} | |
restore-keys: | | |
nuget- | |
- name: Restore build result | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
- name: Run tests | |
shell: pwsh | |
run: | | |
$altCoverVersion = '8.6.61' | |
$xunitVersion = '2.4.2' | |
$targetFramework = 'net48' | |
$altCoverPath = "$($env:NUGET_PACKAGES)\altcover\$($altCoverVersion)\tools\net472\AltCover.exe" | |
$xunitPath = "$($env:NUGET_PACKAGES)\xunit.runner.console\$($xunitVersion)\tools\net472\xunit.console.exe" | |
$p = Start-Process ` | |
-FilePath $altCoverPath ` | |
-ArgumentList ( | |
'--inputDirectory', | |
".\OpenTween.Tests\bin\$($env:CONFIGURATION)\$($targetFramework)", | |
'--outputDirectory', | |
'.\__Instrumented\', | |
'--assemblyFilter', | |
'?^OpenTween(?!\.Tests)', | |
'--typeFilter', | |
'?^OpenTween\.', | |
'--fileFilter', | |
'\.Designer\.cs', | |
'--visibleBranches' | |
) ` | |
-NoNewWindow ` | |
-PassThru ` | |
-Wait | |
if ($p.ExitCode -ne 0) { | |
exit $p.ExitCode | |
} | |
$p = Start-Process ` | |
-FilePath $altCoverPath ` | |
-ArgumentList ( | |
'runner', | |
'--recorderDirectory', | |
'.\__Instrumented\', | |
'--executable', | |
$xunitPath, | |
'--', | |
'.\__Instrumented\OpenTween.Tests.dll' | |
) ` | |
-NoNewWindow ` | |
-PassThru ` | |
-Wait | |
if ($p.ExitCode -ne 0) { | |
exit $p.ExitCode | |
} | |
- name: Upload test results to codecov | |
shell: pwsh | |
run: | | |
Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile codecov.exe | |
.\codecov.exe -f coverage.xml |