Skip to content

Commit

Permalink
Removed Build step from testing workflow
Browse files Browse the repository at this point in the history
It seems that as of Swift 5.4, building tests on a release build causes issues. See #9
  • Loading branch information
dimitribouniol committed Jun 3, 2021
1 parent e5e6fb5 commit 158e198
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 158e198

Please sign in to comment.