-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (41 loc) · 957 Bytes
/
Copy pathci.yml
File metadata and controls
48 lines (41 loc) · 957 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
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches:
- main
paths-ignore:
- Docs/**
- README.md
- LICENSE
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- Docs/**
- README.md
- LICENSE
workflow_dispatch:
permissions:
contents: read
env:
DEVELOPER_DIR: /Applications/Xcode_26.6.app
jobs:
build:
name: Build for ${{ matrix.project }}
runs-on: macos-26
strategy:
fail-fast: false
matrix:
project: ["production", "develop"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build for ${{ matrix.project }}
run: make build-debug-${{ matrix.project }}
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.1
with:
api_breakage_check_enabled: false
docs_check_enabled: false
license_header_check_enabled: false
format_check_enabled: false