Bump github.com/redis/go-redis/v9 from 9.6.1 to 9.7.0 (#82) #226
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
name: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go: [ '1.21','1.22' ] | |
os: [ 'ubuntu-latest' ] | |
runs-on: ${{ matrix.os }} | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps port 6379 on service container to the host | |
- 6379:6379 | |
etcd: | |
image: gcr.io/etcd-development/etcd:v3.5.4 | |
options: >- | |
--health-cmd "etcdctl endpoint health" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
--env ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379 | |
--env ETCD_ADVERTISE_CLIENT_URLS=http://0.0.0.0:2379 | |
ports: | |
- 2379:2379 | |
memcached: | |
image: memcached | |
ports: | |
- 11211:11211 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: go build -v ./... | |
- name: Start nscache-server | |
run: go install ./cmd/nscache-server && nscache-server & | |
- name: Start Redis Cluster | |
run: chmod +x ./scripts/start_redis_cluster.sh && ./scripts/start_redis_cluster.sh | |
- name: Test | |
run: go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic -timeout=10m | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Benchmark | |
run: go test -v -run=ignore_unit_tests -bench=. ./... |