There was an error while loading. Please reload this page.
2 parents 0b1812c + 09075b8 commit dde9586Copy full SHA for dde9586
1 file changed
.github/workflows/build.yml
@@ -4,14 +4,19 @@ on:
4
pull_request:
5
paths:
6
- '**.swift'
7
+ workflow_dispatch:
8
9
jobs:
10
build:
11
runs-on: macos-latest
12
steps:
13
+ - uses: maxim-lobanov/setup-xcode@v1
14
+ with:
15
+ xcode-version: '16.2.0' # Specify the desired Xcode version
16
+
17
- uses: actions/checkout@v4
18
19
- name: 🔨 Build
20
run: |
- sudo xcode-select -s /Applications/Xcode_15.4.app/
- swift build
21
+ swift build
22
+ swift test
0 commit comments