-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (54 loc) · 1.24 KB
/
main.yml
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
51
52
53
54
55
56
57
58
59
name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer"
# Limit GITHUB_TOKEN permissions to read-only for repo contents
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Run setup
run: make setup
- name: Run lint
run: make lint
build:
name: Build
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Run setup
run: make setup
- name: Run build
run: make build
test:
name: Test
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Run setup
run: make setup
- name: Run tests
run: make test