Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mity committed Dec 5, 2023
1 parent 929b437 commit 43f55eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Build
run: msbuild.exe c-reusables.sln /p:Configuration=Debug /p:Platform=Win32
- name: Test
run: Get-ChildItem -Path .\tests\Debug\ -File "test-*.exe" | Foreach {Write $_.FullName; Invoke-Expression $_.FullName}
run: Get-ChildItem -Path .\Debug\ -File "test-*.exe" | Foreach {Write $_.FullName; Invoke-Expression $_.FullName}

windows-64:
runs-on: windows-latest
Expand All @@ -48,4 +48,4 @@ jobs:
- name: Build
run: msbuild.exe c-reusables.sln /p:Configuration=Debug /p:Platform=x64
- name: Test
run: Get-ChildItem -Path .\tests\Debug\ -File "test-*.exe" | Foreach {Write $_.FullName; Invoke-Expression $_.FullName}
run: Get-ChildItem -Path .\Debug\ -File "test-*.exe" | Foreach {Write $_.FullName; Invoke-Expression $_.FullName}

0 comments on commit 43f55eb

Please sign in to comment.