Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mochidev/DynamicCodable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.0
Choose a base ref
...
head repository: mochidev/DynamicCodable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 3, 2021

  1. Copy the full SHA
    902f844 View commit details
  2. Removed Build step from testing workflow

    It seems that as of Swift 5.4, building tests on a release build causes issues. See #9
    dimitribouniol committed Jun 3, 2021
    Copy the full SHA
    940088d View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 .github/workflows/test.yml
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -12,9 +12,10 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Build
run: |
swift build --build-tests --enable-test-discovery --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-test-discovery --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