Skip to content

Commit

Permalink
Xcode 14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
swhitty committed Apr 24, 2023
1 parent c3d51eb commit 2562b02
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

xcode_13_4:
runs-on: macos-12
Expand All @@ -50,9 +50,9 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

xcode_13_2_1:
runs-on: macos-11
Expand All @@ -64,9 +64,9 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

linux_swift_5_6_3:
runs-on: ubuntu-latest
Expand All @@ -77,9 +77,9 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

linux_swift_5_7:
runs-on: ubuntu-latest
Expand All @@ -90,9 +90,9 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

linux_swift_5_8:
runs-on: ubuntu-latest
Expand All @@ -103,6 +103,6 @@ jobs:
- name: Version
run: swift --version
- name: Build
run: swift test --enable-code-coverage --filter do_not_test
run: swift build --build-tests
- name: Test
run: swift test --enable-code-coverage --skip-build
run: swift test --skip-build

0 comments on commit 2562b02

Please sign in to comment.