Skip to content

Commit 1612896

Browse files
authored
Merge pull request #6 from swiftlang/support-github-actions
2 parents 201f43b + ddb66d1 commit 1612896

File tree

5 files changed

+42
-2
lines changed

5 files changed

+42
-2
lines changed

.github/workflows/pull_request.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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_os_versions: '["noble", "jammy", "focal", "rhel-ubi9"]'
13+
linux_swift_versions: '["6.1", "nightly-main"]'
14+
linux_build_command: 'swift build'
15+
windows_swift_versions: '["6.1", "nightly-main"]'
16+
windows_build_command: 'swift build'
17+
enable_macos_checks: true
18+
macos_xcode_versions: '["16.3"]'
19+
20+
soundness:
21+
name: Soundness
22+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
23+
with:
24+
license_header_check_project_name: "Swift.org"
25+
docs_check_enabled: false
26+
format_check_enabled: false
27+
unacceptable_language_check_enabled: false
28+
api_breakage_check_enabled: false

.license_header_template

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@@===----------------------------------------------------------------------===@@
2+
@@
3+
@@ This source file is part of the Swift.org open source project
4+
@@
5+
@@ Copyright (c) YEARS Apple Inc. and the Swift project authors
6+
@@ Licensed under Apache License v2.0 with Runtime Library Exception
7+
@@
8+
@@ See https://swift.org/LICENSE.txt for license information
9+
@@
10+
@@===----------------------------------------------------------------------===@@

.licenseignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Package.swift
2+
3+
LICENSE

Sources/_SubprocessCShims/include/target_conditionals.h

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
// Licensed under Apache License v2.0 with Runtime Library Exception
77
//
88
// See https://swift.org/LICENSE.txt for license information
9-
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
109
//
1110
//===----------------------------------------------------------------------===//
1211

Tests/SubprocessTests/SubprocessTests+Windows.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88
// See https://swift.org/LICENSE.txt for license information
99
//
10-
//===---------------------------------------------------------------------s-===//
10+
//===----------------------------------------------------------------------===//
1111

1212
#if canImport(WinSDK)
1313

0 commit comments

Comments
 (0)