Set the default read/write buffer size of Redis connection to 32KiB #2458
Workflow file for this run
This file contains hidden or 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: Documentation Tests | |
on: | |
push: | |
branches: [master, examples] | |
pull_request: | |
branches: [master, examples] | |
permissions: | |
contents: read | |
jobs: | |
doctests: | |
name: doctests | |
runs-on: ubuntu-latest | |
services: | |
redis-stack: | |
image: redislabs/client-libs-test:8.0.2 | |
env: | |
TLS_ENABLED: no | |
REDIS_CLUSTER: no | |
PORT: 6379 | |
ports: | |
- 6379:6379 | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ["1.24"] | |
steps: | |
- name: Set up ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Test doc examples | |
working-directory: ./doctests | |
run: make test |