Skip to content

Commit

Permalink
CI: Fix paths to test suite in Windows builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
mity committed Jan 20, 2024
1 parent e3d636c commit 4c8b28c
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 @@ -35,7 +35,7 @@ jobs:
- name: Build
run: msbuild.exe centijson.sln /p:Configuration=Release /p:Platform=Win32
- name: Test
run: .\test-json.exe
run: .\Release\test-json.exe

windows-64:
runs-on: windows-latest
Expand All @@ -47,4 +47,4 @@ jobs:
- name: Build
run: msbuild.exe centijson.sln /p:Configuration=Release /p:Platform=x64
- name: Test
run: .\test-json.exe
run: .\Release\test-json.exe

0 comments on commit 4c8b28c

Please sign in to comment.