Skip to content

Commit 8aee78a

Browse files
authored
Merge pull request #23 from apple/github-actions-support
[CI] Add support for GitHub Actions
2 parents a19c4f4 + 6505e3b commit 8aee78a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pull_request.yml

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

0 commit comments

Comments
 (0)