-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (40 loc) · 1.03 KB
/
Copy pathci.yml
File metadata and controls
44 lines (40 loc) · 1.03 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
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
jobs:
build_tests_ios:
name: Build iOS Tests for ${{ matrix.project }}
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.1
strategy:
matrix:
project: ["production", "develop"]
with:
enable_linux_checks: false
enable_windows_checks: false
enable_ios_checks: true
ios_host_xcode_versions: "[\"26.1\"]"
ios_host_versions: "[\"sequoia\"]"
ios_build_command: 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