Skip to content

Bump github.com/redis/go-redis/v9 from 9.5.1 to 9.5.3 #1076

Bump github.com/redis/go-redis/v9 from 9.5.1 to 9.5.3

Bump github.com/redis/go-redis/v9 from 9.5.1 to 9.5.3 #1076

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go_version: [1.22.x]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
check-latest: true
- run: go version
- name: Test
run: go test -v ./...
- name: Setup examples for testing
run: ./.github/scripts/setup_examples_test.bash
- name: Test examples
continue-on-error: true
working-directory: _examples
run: go test -v -mod=mod -cover -race ./...