We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d12b0a5 commit cf68ddaCopy full SHA for cf68dda
.github/workflows/pull_request.yml
@@ -15,7 +15,8 @@ jobs:
15
name: Unit tests
16
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
17
with:
18
- linux_pre_build_command: apt-get update -y && apt-get install redis -y && systemctl start redis-stack-server
+ # since we don't have systemctl, we run the redis server manually in the background
19
+ linux_pre_build_command: apt-get update -y && apt-get install redis -y && redis-server &
20
linux_exclude_swift_versions: "[{\"swift_version\": \"5.8\"}]"
21
linux_env_vars: REDIS_URL=redis
22
enable_windows_checks: false
0 commit comments