Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pull request

permissions:
contents: read

on:
pull_request:
types: [opened, reopened, synchronize]

jobs:
tests:
name: Test (SwiftPM)
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.13
with:
linux_swift_versions: '["nightly-main", "nightly-6.4.x"]'
enable_windows_checks: false
enable_cross_pr_testing: true

soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.13
with:
license_header_check_project_name: "Swift.org"
license_header_check_enabled: false
docs_check_enabled: false
format_check_enabled: false
unacceptable_language_check_enabled: false
api_breakage_check_enabled: false

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me know if you want any of these soundness checks enabled.

Loading