-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 835 Bytes
/
ci.yml
File metadata and controls
40 lines (38 loc) · 835 Bytes
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
name: CI
on:
push:
branches: [ "main" ]
paths-ignore:
- '**/README.md'
- 'CONTRIBUTING.md'
- 'CODE_OF_CONDUCT.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/README.md'
- 'CONTRIBUTING.md'
- 'CODE_OF_CONDUCT.md'
jobs:
macos-15:
name: Build macOS 15
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Xcode version
run: sudo xcode-select -s /Applications/Xcode_16.4.0.app
- name: Build
run: swift build -v
# - name: Run tests
# run: swift test -v
ubuntu:
name: Build Linux
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
# - name: Run tests
# run: swift test -v