Skip to content

Commit aed4dd6

Browse files
committed
ci: Add pull request CI workflows.
1 parent da07ce2 commit aed4dd6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Pull request
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize]
6+
7+
jobs:
8+
soundness:
9+
name: Soundness
10+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
11+
with:
12+
license_header_check_project_name: "Swift.org"
13+
14+
tests:
15+
name: tests
16+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
17+
18+
wasm-sdk:
19+
name: WebAssembly SDK
20+
# TODO: Switch to this line after https://github.com/apple/swift-nio/pull/3159/ is merged
21+
# uses: apple/swift-nio/.github/workflows/wasm_sdk.yml@main
22+
uses: kateinoigakukun/swift-nio/.github/workflows/wasm_sdk.yml@katei/add-wasm-ci

0 commit comments

Comments
 (0)