From f3ce4637967b6701a1cd2401e2f7d89c8cd6cf88 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 23 Aug 2023 22:22:17 -0700 Subject: [PATCH] Run tests on Windows --- .github/workflows/build-and-test.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index f9b20690c..0606e32d3 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -179,13 +179,11 @@ jobs: - name: Copy support library run: xcopy HyloLibC.lib c:\program" "files\microsoft" "visual" "studio\2022\enterprise\vc\tools\msvc\${{ env.VCToolsVersion }}\lib\x64\ - - name: Build (Release) - id: build - continue-on-error: true - run: swift build -v -c release + - name: Build and Test (Debug) + run: swift test -c debug - - name: Retry on failure - continue-on-error: false - if: steps.build.outcome != 'success' - run: swift build -v -c release + - name: Build and Test (Release) + id: build + run: swift test -c release +