Skip to content

[CI] GitHub Actions support for PR testing and automerger #5

[CI] GitHub Actions support for PR testing and automerger

[CI] GitHub Actions support for PR testing and automerger #5

Workflow file for this run

name: Pull request
permissions:
contents: read
on:
pull_request:
types: [opened, reopened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
with:
linux_os_versions: '["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]'
linux_swift_versions: '["nightly-main", "nightly-6.2"]'
linux_build_command: 'swift build'
windows_swift_versions: '["nightly-main"]'
enable_linux_static_sdk_build: true
enable_android_sdk_build: true
android_sdk_build_command: "swift build --build-tests"
android_ndk_versions: '["r27d", "r29"]'
enable_ios_checks: true
enable_macos_checks: true
macos_exclude_xcode_versions: "[{\"xcode_version\": \"16.3\"}, {\"xcode_version\": \"16.4\"}]"
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
with:
license_header_check_project_name: "Swift.org"
license_header_check_enabled: false
unacceptable_language_check_enabled: false
api_breakage_check_enabled: false
format_check_enabled: false