Skip to content

Commit 61caf25

Browse files
authored
Merge pull request #2985 from ahoppen/github-actions
[CI] Add support for GitHub Actions
2 parents 7b01db2 + 4866c81 commit 61caf25

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/pull_request.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
# https://github.com/swiftlang/swift-syntax/issues/2992
13+
enable_windows_checks: false
14+
soundness:
15+
name: Soundness
16+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
17+
with:
18+
license_header_check_project_name: "Swift.org"
19+
# https://github.com/swiftlang/swift-syntax/issues/2986
20+
api_breakage_check_enabled: false
21+
# https://github.com/swiftlang/swift-syntax/issues/2987
22+
docs_check_enabled: false
23+
# https://github.com/swiftlang/swift-syntax/issues/2988
24+
format_check_enabled: false
25+
# https://github.com/swiftlang/swift-syntax/issues/2989
26+
license_header_check_enabled: false
27+
# https://github.com/swiftlang/swift-syntax/issues/2990
28+
unacceptable_language_check_enabled: false
29+
# https://github.com/swiftlang/swift-syntax/issues/2991
30+
yamllint_check_enabled: false

0 commit comments

Comments
 (0)