-
Notifications
You must be signed in to change notification settings - Fork 141
44 lines (40 loc) · 1.29 KB
/
pull_request.yml
File metadata and controls
44 lines (40 loc) · 1.29 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: Pull request
permissions:
contents: read
on:
pull_request:
types: [opened, reopened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
list-xcodes:
name: List available Xcode versions
runs-on: [self-hosted, macos]
steps:
- name: List available Xcode versions
run: |
ls -ld /Applications/*Xcode*
tests:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.7
with:
linux_swift_versions: '["nightly-main", "nightly-6.3"]'
linux_os_versions: '["amazonlinux2", "jammy"]'
linux_static_sdk_versions: '["nightly-main"]'
windows_swift_versions: '["nightly-main", "nightly-6.3"]'
enable_macos_checks: true
macos_xcode_versions: '["swift_6.3"]'
enable_ios_checks: true
ios_host_xcode_versions: '["swift_6.3"]'
enable_wasm_sdk_build: true
wasm_sdk_versions: '["nightly-main", "nightly-6.3"]'
enable_android_sdk_build: true
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.7
with:
license_header_check_project_name: "Swift"
docs_check_enabled: false
format_check_enabled: false
api_breakage_check_enabled: false