From 158e198f61590d6d5873f1b17be339e4bdefe0f5 Mon Sep 17 00:00:00 2001 From: Dimitri Bouniol Date: Wed, 2 Jun 2021 23:22:29 -0700 Subject: [PATCH] Removed Build step from testing workflow It seems that as of Swift 5.4, building tests on a release build causes issues. See #9 --- .github/workflows/test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b14c36c..fa22fda 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,9 +12,10 @@ jobs: steps: - name: Checkout Source uses: actions/checkout@v2 - - name: Build - run: | - swift build --build-tests --enable-index-store --configuration release -Xswiftc -warnings-as-errors -Xcc -Werror +# - name: Build +# run: | +# swift build --build-tests --enable-index-store --configuration release -Xswiftc -warnings-as-errors -Xcc -Werror - name: Run Tests run: | - swift test --skip-build --enable-index-store --configuration release + swift test --enable-index-store --configuration release -Xswiftc -warnings-as-errors -Xcc -Werror +# swift test --skip-build --enable-index-store --configuration release