Skip to content

Commit 82b63f6

Browse files
authored
Merge pull request #1308 from swiftlang/github-actions-support
[CI] Add support for GitHub Actions
2 parents b56289a + 5fb6744 commit 82b63f6

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Pull request
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
tests:
13+
name: Test
14+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
15+
with:
16+
linux_swift_versions: '["nightly-main", "nightly-6.2"]'
17+
windows_swift_versions: '["nightly-main", "nightly-6.2"]'
18+
enable_macos_checks: true
19+
macos_exclude_xcode_versions: "[{\"xcode_version\": \"16.2\"}, {\"xcode_version\": \"16.3\"}]"
20+
enable_wasm_sdk_build: true
21+
soundness:
22+
name: Soundness
23+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
24+
with:
25+
license_header_check_project_name: "Swift"
26+
license_header_check_enabled: false
27+
docs_check_enabled: false
28+
unacceptable_language_check_enabled: false
29+
format_check_enabled: false

0 commit comments

Comments
 (0)