Skip to content

Commit f970eb6

Browse files
authored
[CI] Add support for GitHub Actions (#250)
1 parent d019041 commit f970eb6

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/pull_request.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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.org"
16+
license_header_check_enabled: false
17+
# https://github.com/apple/swift-algorithms/issues/251
18+
docs_check_enabled: false
19+
# https://github.com/apple/swift-algorithms/issues/252
20+
format_check_enabled: false

.spi.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ version: 1
22
builder:
33
configs:
44
- documentation_targets: [Algorithms]
5-

0 commit comments

Comments
 (0)