Skip to content

Commit 1b8167d

Browse files
authored
Merge pull request #222 from apple/github-actions-support
[CI] Add support for GitHub Actions
2 parents d9b0301 + 2ac80d6 commit 1b8167d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Pull request
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize]
6+
7+
jobs:
8+
tests:
9+
name: Test
10+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
11+
with:
12+
linux_exclude_swift_versions: '[{"swift_version": "5.8"}]'
13+
# https://github.com/apple/swift-system/issues/223
14+
enable_windows_checks: false
15+
soundness:
16+
name: Soundness
17+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
18+
with:
19+
license_header_check_project_name: "Swift.org"
20+
# https://github.com/apple/swift-system/issues/224
21+
docs_check_enabled: false
22+
unacceptable_language_check_enabled: false
23+
license_header_check_enabled: false
24+
format_check_enabled: false
25+
python_lint_check_enabled: false

0 commit comments

Comments
 (0)