Skip to content

Commit 80588e9

Browse files
authored
[CI] Add support for GitHub Actions (#1241)
* [CI] Add support for GitHub Actions * Disable License, Docs, Format, Unacceptable Lang, and API breakage checks * Use Docker image for Windows builds * update the CI to only run on nightly-main
1 parent 90953df commit 80588e9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/pull_request.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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_swift_versions: '["nightly-main"]'
13+
windows_swift_versions: '["nightly-main"]'
14+
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+
license_header_check_enabled: false
21+
docs_check_enabled: false
22+
format_check_enabled: false
23+
unacceptable_language_check_enabled: false
24+
api_breakage_check_enabled: false

0 commit comments

Comments
 (0)