-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 1008 Bytes
/
build.yaml
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Swift Build
on:
push:
branches: [main]
paths: ["**/*.swift"]
pull_request:
branches: [main]
paths: ["**/*.swift"]
workflow_dispatch:
jobs:
build:
name: Xcode ${{ matrix.xcode }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14]
xcode: ["15"]
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Lint
run: rake swift:lint
- name: Build
run: rake swift:build