-
-
Notifications
You must be signed in to change notification settings - Fork 14
50 lines (45 loc) · 1.17 KB
/
swift.yml
File metadata and controls
50 lines (45 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Build Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
xcode-16-3:
runs-on: macos-15
env:
DEVELOPER_DIR: /Applications/Xcode_16.3.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build -v
# - name: Test
# run: swift test -v
xcode-15-4:
runs-on: macos-14
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build -v
# - name: Test
# run: swift test -v
xcode-15-0:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Version
run: swift --version
- name: Build
run: swift build -v
# - name: Test
# run: swift test -v