Skip to content

Commit 70ff539

Browse files
committed
[CI] Add support for GitHub Actions
I have disabled all checks that are currently failing for now to get the initial support in. I will work on enabling these tests in follow-up PRs one-by-one.
1 parent da8362a commit 70ff539

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
enable_windows_checks: false
13+
soundness:
14+
name: Soundness
15+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
16+
with:
17+
license_header_check_project_name: "Swift.org"
18+
api_breakage_check_enabled: false
19+
docs_check_enabled: false
20+
format_check_enabled: false
21+
license_header_check_enabled: false
22+
unacceptable_language_check_enabled: false
23+
yamllint_check_enabled: false

0 commit comments

Comments
 (0)