Skip to content

Commit 9e7fc29

Browse files
committed
[CI] Add support for GitHub Actions
1 parent 3894845 commit 9e7fc29

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+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
tests:
13+
name: Test
14+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
15+
with:
16+
linux_os_versions: '["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]'
17+
linux_swift_versions: '["6.1", "nightly-main", "nightly-6.2"]'
18+
windows_swift_versions: '["6.1", "nightly-main", "nightly-6.2"]'
19+
soundness:
20+
name: Soundness
21+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
22+
with:
23+
license_header_check_project_name: "Swift"

0 commit comments

Comments
 (0)