From 3e19d84f3bc49f4f1ccbe049bc047e73feb14585 Mon Sep 17 00:00:00 2001 From: "Joshua T. Fisher" Date: Tue, 27 Jan 2026 17:48:15 -0800 Subject: [PATCH] Add test runner. --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b8acbea..342526c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,4 +29,10 @@ jobs: shell: cmd run: | cmake -B build - cmake --build build --config Release \ No newline at end of file + cmake --build build --config Release + + - name: Tests + shell: cmd + continue-on-error: true # When tests start passing, this line should be removed. + run: | + .\build\ps2xTest\Release\ps2x_tests.exe \ No newline at end of file