enable multi deletions with Sorted.Delete.Index #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Do not edit. This file was generated via the "workflow" command line tool. | |
# More information about the tool can be found at github.com/xh3b4sd/workflow. | |
# | |
# workflow create redigo | |
# | |
name: "go-redis" | |
on: "push" | |
jobs: | |
go-redis: | |
runs-on: "ubuntu-latest" | |
container: "golang:1.21-alpine" | |
services: | |
redis: | |
image: "redis" | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
redis-sentinel: | |
image: "bitnami/redis-sentinel:6.0" | |
ports: | |
- "26379:26379" | |
env: | |
REDIS_SENTINEL_QUORUM: "1" | |
steps: | |
- name: "Setup Git Project" | |
uses: "actions/checkout@v4" | |
- name: "Install Race Dependency" | |
run: | | |
apk add gcc | |
apk add musl-dev | |
- name: "Check Go Tests" | |
env: | |
CGO_ENABLED: "1" | |
REDIS_HOST: "redis" | |
REDIS_PORT: "6379" | |
REDIS_SENTINEL_HOST: "redis-sentinel" | |
REDIS_SENTINEL_PORT: "26379" | |
run: | | |
go test ./... -race -tags single,sentinel |