We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a003f commit bef545fCopy full SHA for bef545f
.github/workflows/swift.yml
@@ -7,14 +7,16 @@ on:
7
branches: [ main ]
8
9
env:
10
- DEVELOPER_DIR: /Applications/Xcode_12.5.1.app/Contents/Developer
+ DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
11
12
jobs:
13
- build_and_test:
14
- runs-on: macos-11
+ swift:
+ name: Swift
15
+ runs-on: macos-13
16
steps:
- - uses: actions/checkout@v2
17
+ - name: Checkout source
18
+ uses: actions/checkout@v3
19
- name: Build
- run: swift build -v
- - name: Run tests
20
+ run: swift build -v -Xswiftc -warnings-as-errors
21
+ - name: Test
22
run: swift test -v
0 commit comments