Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bef545f

Browse files
committedFeb 28, 2024·
Update Swift workflow
1 parent 74a003f commit bef545f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed
 

‎.github/workflows/swift.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ on:
77
branches: [ main ]
88

99
env:
10-
DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
10+
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
1111

1212
jobs:
13-
build_and_test:
14-
runs-on: macos-11
13+
swift:
14+
name: Swift
15+
runs-on: macos-13
1516
steps:
16-
- uses: actions/checkout@v2
17+
- name: Checkout source
18+
uses: actions/checkout@v3
1719
- name: Build
18-
run: swift build -v
19-
- name: Run tests
20+
run: swift build -v -Xswiftc -warnings-as-errors
21+
- name: Test
2022
run: swift test -v

0 commit comments

Comments
 (0)
Please sign in to comment.