mirror of
https://github.com/swift-server/RediStack.git
synced 2026-05-03 07:32:28 +00:00
45a2295626
### Motivation: For better control over GitHub workflows, switch over to a tags-based dependency. ### Modifications: - Switch to tags - Enable dependabot to get weekly update checks ### Result: More streamlined and controlled GHA dependency updates.
30 lines
910 B
YAML
30 lines
910 B
YAML
name: PR
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
soundness:
|
|
name: Soundness
|
|
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.7
|
|
with:
|
|
license_header_check_project_name: "RediStack"
|
|
|
|
unit-tests:
|
|
name: Unit tests
|
|
uses: ./.github/workflows/unit_tests.yml
|
|
with:
|
|
linux_6_0_arguments_override: "--explicit-target-dependency-import-check error"
|
|
linux_6_1_arguments_override: "--explicit-target-dependency-import-check error"
|
|
linux_6_2_arguments_override: "--explicit-target-dependency-import-check error"
|
|
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error"
|
|
|
|
cxx-interop:
|
|
name: Cxx interop
|
|
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@main
|
|
|
|
release-builds:
|
|
name: Release builds
|
|
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
|