Format yaml files using github.com/google/yamlfmt/cmd/yamlfmt

This commit is contained in:
Juan Calderon-Perez
2025-11-20 22:27:05 -05:00
parent 500e9ca7fb
commit d5882b84e2
39 changed files with 847 additions and 951 deletions

View File

@@ -1,5 +1,4 @@
name: Auto labeler
on:
issues:
types: [opened, edited, milestoned]
@@ -13,7 +12,6 @@ permissions:
pull-requests: write # for labeling pull requests (on: pull_request_target or on: pull_request)
statuses: write # to generate status
checks: write # to generate status
jobs:
labeler:
runs-on: ubuntu-latest
@@ -25,4 +23,3 @@ jobs:
# Use a PAT so that applying labels can trigger downstream workflows
# (GITHUB_TOKEN updates do not emit additional workflow events).
github-token: ${{ secrets.ISSUE_PR_TOKEN }}

View File

@@ -10,11 +10,9 @@ on:
paths:
- "**"
- "!**.md"
permissions:
deployments: write
contents: write
name: Benchmark
jobs:
changes:
@@ -24,7 +22,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Generate filters
id: filter-setup
run: |
@@ -33,7 +30,6 @@ jobs:
echo "$filters" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- name: Filter changes
id: filter
uses: dorny/paths-filter@v3
@@ -41,7 +37,6 @@ jobs:
filters: ${{ steps.filter-setup.outputs.filters }}
outputs:
packages: ${{ steps.filter.outputs.changes || '[]' }}
compare:
needs: changes
runs-on: ubuntu-latest
@@ -54,25 +49,21 @@ jobs:
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
# NOTE: Keep this in sync with the version from go.mod
go-version: "1.24.x"
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install Cloudflare Worker
if: ${{ matrix.package == 'cloudflarekv' }}
run : |
run: |
.github/scripts/initialize-wrangler.sh
cd cloudflarekv && npx wrangler dev &
npx wait-on tcp:8787
- name: Install etcd
if: ${{ matrix.package == 'etcd' }}
run: |
@@ -82,7 +73,6 @@ jobs:
--env ALLOW_NONE_AUTHENTICATION=yes \
--env ETCD_ADVERTISE_CLIENT_URLS=http://etcd-server:2379 \
bitnami/etcd:latest
- name: Install MSSQL
if: ${{ matrix.package == 'mssql' }}
run: |
@@ -99,7 +89,6 @@ jobs:
--health-start-period 10s \
--health-retries 20 \
mcmoe/mssqldocker:latest
- name: Run Benchmarks
working-directory: ${{ matrix.package }}
run: |
@@ -130,13 +119,11 @@ jobs:
TEST_SURREALDB_IMAGE: "surrealdb/surrealdb:latest"
TEST_VALKEY_IMAGE: "valkey/valkey:8"
COHERENCE_LOG_LEVEL: "ERROR"
- name: Get Previous Benchmark Results
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark-${{ matrix.package }}
- name: Save Benchmark Results
uses: benchmark-action/github-action-benchmark@v1.20.4
with:
@@ -150,5 +137,3 @@ jobs:
#summary-always: ${{ github.event_name != 'push' && github.event_name != 'workflow_dispatch' }}
auto-push: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
save-data-file: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}

View File

@@ -2,25 +2,23 @@ name: Dependabot auto-merge
on:
workflow_dispatch:
pull_request_target:
permissions:
contents: write
pull-requests: write
jobs:
wait_for_checks:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Wait for check is finished
uses: lewagon/wait-on-check-action@v1.4.0
id: wait_for_checks
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
running-workflow-name: wait_for_checks
check-regexp: Tests
repo-token: ${{ secrets.PR_TOKEN }}
wait-interval: 10
- name: Wait for check is finished
uses: lewagon/wait-on-check-action@v1.4.0
id: wait_for_checks
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
running-workflow-name: wait_for_checks
check-regexp: Tests
repo-token: ${{ secrets.PR_TOKEN }}
wait-interval: 10
dependabot:
needs: [wait_for_checks]
name: Dependabot auto-merge
@@ -35,8 +33,8 @@ jobs:
- name: Enable auto-merge for Dependabot PRs
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge "$PR_URL"
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.PR_TOKEN}}

View File

@@ -1,5 +1,4 @@
name: Golangci-Lint Check
on:
push:
branches:
@@ -18,9 +17,7 @@ on:
- LICENSE
- ".github/ISSUE_TEMPLATE/*.yml"
- ".github/dependabot.yml"
workflow_dispatch:
jobs:
changes:
runs-on: ubuntu-latest
@@ -29,7 +26,6 @@ jobs:
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Generate filters
id: filter-setup
run: |
@@ -41,7 +37,6 @@ jobs:
echo "$testhelpers_filters" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- name: Filter changes
id: filter
uses: dorny/paths-filter@v3
@@ -49,7 +44,6 @@ jobs:
filters: ${{ steps.filter-setup.outputs.filters }}
outputs:
packages: ${{ steps.filter.outputs.changes || '[]' }}
lint:
needs: changes
runs-on: ubuntu-latest

View File

@@ -1,63 +1,55 @@
name: Release Drafter (All)
on:
push:
branches:
- master
- main
workflow_dispatch:
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Generate filters
id: filter-setup
run: |
filters=$(find . -maxdepth 1 -type d ! -path ./.git ! -path . ! -path ./testhelpers -exec basename {} \; | grep -v '^\.' | awk '{printf "%s: \"%s/**\"\n", $1, $1}')
echo "filters<<EOF" >> $GITHUB_OUTPUT
echo "$filters" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- name: Filter changes
id: filter
uses: dorny/paths-filter@v3
with:
filters: ${{ steps.filter-setup.outputs.filters }}
outputs:
packages: ${{ steps.filter.outputs.changes || '[]' }}
release-drafter:
needs: changes
runs-on: ubuntu-latest
timeout-minutes: 30
if: needs.changes.outputs.packages != '[]' # Ensure job runs only if there are changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
package: ${{ fromJSON(needs.changes.outputs.packages || '[]') }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Generate dynamic config from template
id: generate-config
run: |
folder="${{ matrix.package }}"
sed "s|{{FOLDER}}|$folder|g" .github/release-drafter-template.yml > .github/release-drafter-$folder.yml
echo "config<<EOF" >> $GITHUB_OUTPUT
cat .github/release-drafter-$folder.yml >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Use dynamic release-drafter configuration
uses: ReneWerner87/release-drafter@6dec4ceb1fb86b6514f11a2e7a39e1dedce709d0
with:
config: ${{ steps.generate-config.outputs.config }}
name: Release Drafter (All)
on:
push:
branches:
- master
- main
workflow_dispatch:
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Generate filters
id: filter-setup
run: |
filters=$(find . -maxdepth 1 -type d ! -path ./.git ! -path . ! -path ./testhelpers -exec basename {} \; | grep -v '^\.' | awk '{printf "%s: \"%s/**\"\n", $1, $1}')
echo "filters<<EOF" >> $GITHUB_OUTPUT
echo "$filters" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- name: Filter changes
id: filter
uses: dorny/paths-filter@v3
with:
filters: ${{ steps.filter-setup.outputs.filters }}
outputs:
packages: ${{ steps.filter.outputs.changes || '[]' }}
release-drafter:
needs: changes
runs-on: ubuntu-latest
timeout-minutes: 30
if: needs.changes.outputs.packages != '[]' # Ensure job runs only if there are changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
package: ${{ fromJSON(needs.changes.outputs.packages || '[]') }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Generate dynamic config from template
id: generate-config
run: |
folder="${{ matrix.package }}"
sed "s|{{FOLDER}}|$folder|g" .github/release-drafter-template.yml > .github/release-drafter-$folder.yml
echo "config<<EOF" >> $GITHUB_OUTPUT
cat .github/release-drafter-$folder.yml >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Use dynamic release-drafter configuration
uses: ReneWerner87/release-drafter@6dec4ceb1fb86b6514f11a2e7a39e1dedce709d0
with:
config: ${{ steps.generate-config.outputs.config }}

View File

@@ -1,40 +1,34 @@
name: 'Sync docs'
on:
push:
branches:
- master
- main
paths:
- '**/*.md'
release:
types: [published]
branches:
- '*/v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- '**/*.md'
release:
types: [published]
branches:
- '*/v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
jobs:
sync-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install JQ
run: sudo apt-get install jq
- name: Sync docs
run: ./.github/scripts/sync_docs.sh
env:
EVENT: ${{ github.event_name }}
TAG_NAME: ${{ github.ref_name }}
TOKEN: ${{ secrets.DOC_SYNC_TOKEN }}
sync-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install JQ
run: sudo apt-get install jq
- name: Sync docs
run: ./.github/scripts/sync_docs.sh
env:
EVENT: ${{ github.event_name }}
TAG_NAME: ${{ github.ref_name }}
TOKEN: ${{ secrets.DOC_SYNC_TOKEN }}

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'aerospike/**'
pull_request:
paths:
- 'aerospike/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'aerospike/**'
pull_request:
paths:
- 'aerospike/**'
workflow_dispatch:
name: "Tests Aerospike"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_AEROSPIKE_IMAGE: aerospike/aerospike-server:latest
run: cd ./aerospike && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_AEROSPIKE_IMAGE: aerospike/aerospike-server:latest
run: cd ./aerospike && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'arangodb/**'
pull_request:
paths:
- 'arangodb/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'arangodb/**'
pull_request:
paths:
- 'arangodb/**'
workflow_dispatch:
name: "Tests ArangoDB"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_ARANGODB_IMAGE: arangodb:latest
run: cd ./arangodb && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_ARANGODB_IMAGE: arangodb:latest
run: cd ./arangodb && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'azureblob/**'
pull_request:
paths:
- 'azureblob/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'azureblob/**'
pull_request:
paths:
- 'azureblob/**'
workflow_dispatch:
name: "Tests Azure Blob"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_AZURITE_IMAGE: mcr.microsoft.com/azure-storage/azurite:latest
run: cd ./azureblob && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_AZURITE_IMAGE: mcr.microsoft.com/azure-storage/azurite:latest
run: cd ./azureblob && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'badger/**'
pull_request:
paths:
- 'badger/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'badger/**'
pull_request:
paths:
- 'badger/**'
workflow_dispatch:
name: "Tests Badger"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Badger
run: cd ./badger && go test ./... -v -race
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Badger
run: cd ./badger && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'bbolt/**'
pull_request:
paths:
- 'bbolt/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'bbolt/**'
pull_request:
paths:
- 'bbolt/**'
workflow_dispatch:
name: "Tests Bbolt"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./bbolt && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./bbolt && go test ./... -v -race

View File

@@ -9,7 +9,6 @@ on:
paths:
- 'cassandra/**'
workflow_dispatch:
name: 'Tests Cassandra'
jobs:
Tests:

View File

@@ -9,7 +9,6 @@ on:
paths:
- 'clickhouse/**'
workflow_dispatch:
name: 'Tests Clickhouse'
jobs:
Tests:

View File

@@ -1,5 +1,4 @@
name: Tests CloudflareKV
on:
push:
branches:
@@ -10,35 +9,29 @@ on:
pull_request:
paths:
- 'cloudflarekv/**'
workflow_dispatch:
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
go-version:
- 1.24.x
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
- name: Start Wrangler Dev
run: |
.github/scripts/initialize-wrangler.sh
cd cloudflarekv && npx wrangler dev &
npx wait-on tcp:8787
- name: Run Go Tests
run: cd cloudflarekv && go test ./... -v -race

View File

@@ -9,7 +9,6 @@ on:
paths:
- 'coherence/**'
workflow_dispatch:
name: "Tests Coherence"
jobs:
Tests:

View File

@@ -9,7 +9,6 @@ on:
paths:
- 'couchbase/**'
workflow_dispatch:
name: "Tests Couchbase"
jobs:
Tests:
@@ -21,11 +20,11 @@ jobs:
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_COUCHBASE_IMAGE: couchbase:enterprise-7.6.5
run: cd ./couchbase && go test ./... -v -race
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_COUCHBASE_IMAGE: couchbase:enterprise-7.6.5
run: cd ./couchbase && go test ./... -v -race

View File

@@ -1,36 +1,35 @@
on:
push:
branches:
- master
- main
paths:
- 'dynamodb/**'
pull_request:
paths:
- 'dynamodb/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'dynamodb/**'
pull_request:
paths:
- 'dynamodb/**'
workflow_dispatch:
name: "Tests DynamoDB"
jobs:
Tests:
runs-on: ubuntu-latest
services:
mongo:
image: 'amazon/dynamodb-local:latest'
ports:
- '8000:8000'
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_DYNAMODB_IMAGE: amazon/dynamodb-local:latest
run: cd ./dynamodb && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
services:
mongo:
image: 'amazon/dynamodb-local:latest'
ports:
- '8000:8000'
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_DYNAMODB_IMAGE: amazon/dynamodb-local:latest
run: cd ./dynamodb && go test ./... -v -race

View File

@@ -1,38 +1,36 @@
on:
push:
branches:
- master
- main
paths:
- 'etcd/**'
pull_request:
paths:
- 'etcd/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'etcd/**'
pull_request:
paths:
- 'etcd/**'
workflow_dispatch:
name: "Tests Etcd"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install etcd
run: |
docker run -d --name Etcd-server \
--publish 2379:2379 \
--publish 2380:2380 \
--env ALLOW_NONE_AUTHENTICATION=yes \
--env ETCD_ADVERTISE_CLIENT_URLS=http://etcd-server:2379 \
milvus-io/etcd:latest
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./etcd && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install etcd
run: |
docker run -d --name Etcd-server \
--publish 2379:2379 \
--publish 2380:2380 \
--env ALLOW_NONE_AUTHENTICATION=yes \
--env ETCD_ADVERTISE_CLIENT_URLS=http://etcd-server:2379 \
milvus-io/etcd:latest
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./etcd && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'leveldb/**'
pull_request:
paths:
- 'leveldb/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'leveldb/**'
pull_request:
paths:
- 'leveldb/**'
workflow_dispatch:
name: "Tests LevelDB"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test LevelDB
run: cd ./leveldb && go test ./... -v -race
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test LevelDB
run: cd ./leveldb && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'memcache/**'
pull_request:
paths:
- 'memcache/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'memcache/**'
pull_request:
paths:
- 'memcache/**'
workflow_dispatch:
name: "Tests Memcache"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MEMCACHED_IMAGE: "memcached:latest"
run: cd ./memcache && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MEMCACHED_IMAGE: "memcached:latest"
run: cd ./memcache && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'memory/**'
pull_request:
paths:
- 'memory/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'memory/**'
pull_request:
paths:
- 'memory/**'
workflow_dispatch:
name: "Tests Local Storage"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Memory
run: cd ./memory && go test ./... -v -race
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Memory
run: cd ./memory && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'minio/**'
pull_request:
paths:
- 'minio/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'minio/**'
pull_request:
paths:
- 'minio/**'
workflow_dispatch:
name: "Tests Minio"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MINIO_IMAGE: docker.io/minio/minio:latest
run: cd ./minio && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MINIO_IMAGE: docker.io/minio/minio:latest
run: cd ./minio && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'mockstorage/**'
pull_request:
paths:
- 'mockstorage/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'mockstorage/**'
pull_request:
paths:
- 'mockstorage/**'
workflow_dispatch:
name: "Tests Local Storage"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Mockstorage
run: cd ./mockstorage && go test ./... -v -race
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Mockstorage
run: cd ./mockstorage && go test ./... -v -race

View File

@@ -1,32 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'mongodb/**'
pull_request:
paths:
- 'mongodb/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'mongodb/**'
pull_request:
paths:
- 'mongodb/**'
workflow_dispatch:
name: "Tests Mongodb"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MONGODB_IMAGE: docker.io/mongo:7
run: cd ./mongodb && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MONGODB_IMAGE: docker.io/mongo:7
run: cd ./mongodb && go test ./... -v -race

View File

@@ -1,50 +1,45 @@
on:
push:
branches:
- master
- main
paths:
- 'mssql/**'
pull_request:
paths:
- 'mssql/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'mssql/**'
pull_request:
paths:
- 'mssql/**'
workflow_dispatch:
name: "Tests MSSQL"
jobs:
Tests:
runs-on: ubuntu-latest
services:
mssql:
image: 'mcmoe/mssqldocker:latest'
ports:
- '1433:1433'
env:
ACCEPT_EULA: Y
SA_PASSWORD: MsSql!1234
MSSQL_DB: master
MSSQL_USER: sa
MSSQL_PASSWORD: MsSql!1234
options: >-
--health-cmd "/opt/mssql-tools/bin/sqlcmd -U sa -P $SA_PASSWORD -Q 'select 1' -b -o /dev/null"
--health-interval 1s
--health-timeout 30s
--health-start-period 10s
--health-retries 20
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./mssql && go test ./... -v -race
env:
MSSQL_DATABASE: master
MSSQL_USERNAME: sa
MSSQL_PASSWORD: MsSql!1234
Tests:
runs-on: ubuntu-latest
services:
mssql:
image: 'mcmoe/mssqldocker:latest'
ports:
- '1433:1433'
env:
ACCEPT_EULA: Y
SA_PASSWORD: MsSql!1234
MSSQL_DB: master
MSSQL_USER: sa
MSSQL_PASSWORD: MsSql!1234
options: >-
--health-cmd "/opt/mssql-tools/bin/sqlcmd -U sa -P $SA_PASSWORD -Q 'select 1' -b -o /dev/null" --health-interval 1s --health-timeout 30s --health-start-period 10s --health-retries 20
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./mssql && go test ./... -v -race
env:
MSSQL_DATABASE: master
MSSQL_USERNAME: sa
MSSQL_PASSWORD: MsSql!1234

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'mysql/**'
pull_request:
paths:
- 'mysql/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'mysql/**'
pull_request:
paths:
- 'mysql/**'
workflow_dispatch:
name: "Tests MySQL"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MYSQL_IMAGE: docker.io/mysql:9
run: cd ./mysql && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MYSQL_IMAGE: docker.io/mysql:9
run: cd ./mysql && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'nats/**'
pull_request:
paths:
- 'nats/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'nats/**'
pull_request:
paths:
- 'nats/**'
workflow_dispatch:
name: "Tests Nats Driver"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Nats
env:
TEST_NATS_IMAGE: "nats:2-alpine"
run: cd ./nats && go test ./... -v -race
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Nats
env:
TEST_NATS_IMAGE: "nats:2-alpine"
run: cd ./nats && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'neo4j/**'
pull_request:
paths:
- 'neo4j/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'neo4j/**'
pull_request:
paths:
- 'neo4j/**'
workflow_dispatch:
name: "Tests Neo4j"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./neo4j && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./neo4j && go test ./... -v -race

View File

@@ -9,7 +9,6 @@ on:
paths:
- "pebble/**"
workflow_dispatch:
name: "Tests pebble"
jobs:
Tests:
@@ -19,11 +18,11 @@ jobs:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test Pebble
go-version: '${{ matrix.go-version }}'
- name: Test Pebble
run: cd ./pebble && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 'postgres/**'
pull_request:
paths:
- 'postgres/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'postgres/**'
pull_request:
paths:
- 'postgres/**'
workflow_dispatch:
name: "Tests Postgres"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_POSTGRES_IMAGE: "docker.io/postgres:16-alpine"
run: cd ./postgres && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_POSTGRES_IMAGE: "docker.io/postgres:16-alpine"
run: cd ./postgres && go test ./... -v -race

View File

@@ -1,50 +1,45 @@
on:
push:
branches:
- master
- main
paths:
- 'redis/**'
pull_request:
paths:
- 'redis/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'redis/**'
pull_request:
paths:
- 'redis/**'
workflow_dispatch:
name: "Tests Redis"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Redis Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Wait for Redis to Start
run: sleep 15
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
run: cd ./redis && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Redis Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Wait for Redis to Start
run: sleep 15
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
run: cd ./redis && go test ./... -v -race

View File

@@ -1,29 +1,28 @@
on:
push:
branches:
- master
- main
paths:
- 'ristretto/**'
pull_request:
paths:
- 'ristretto/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'ristretto/**'
pull_request:
paths:
- 'ristretto/**'
workflow_dispatch:
name: "Tests Ristretto"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./ristretto && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
run: cd ./ristretto && go test ./... -v -race

View File

@@ -1,47 +1,43 @@
on:
push:
branches:
- master
- main
paths:
- 'rueidis/**'
pull_request:
paths:
- 'rueidis/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'rueidis/**'
pull_request:
paths:
- 'rueidis/**'
workflow_dispatch:
name: "Tests Rueidis"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Redis Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
run: cd ./rueidis && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Redis Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
run: cd ./rueidis && go test ./... -v -race

View File

@@ -1,31 +1,30 @@
on:
push:
branches:
- master
- main
paths:
- 's3/**'
pull_request:
paths:
- 's3/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 's3/**'
pull_request:
paths:
- 's3/**'
workflow_dispatch:
name: "Tests S3"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MINIO_IMAGE: docker.io/minio/minio:latest
run: cd ./s3 && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_MINIO_IMAGE: docker.io/minio/minio:latest
run: cd ./s3 && go test ./... -v -race

View File

@@ -8,29 +8,22 @@ on:
pull_request:
paths:
- 'scylladb/**'
workflow_dispatch:
name: "Tests ScyllaDb"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_SCYLLADB_IMAGE: "scylladb/scylla:6.2"

View File

@@ -1,33 +1,32 @@
on:
push:
branches:
- master
- main
paths:
- 'sqlite3/**'
pull_request:
paths:
- 'sqlite3/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'sqlite3/**'
pull_request:
paths:
- 'sqlite3/**'
workflow_dispatch:
name: "Tests Sqlite3"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test SQLite3 - with -race check
if: runner.os != 'Windows'
run: cd ./sqlite3 && go test ./... -v -race
- name: Test SQLite3 - without -race check
if: runner.os == 'Windows'
run: cd ./sqlite3 && go test ./... -v
Tests:
strategy:
matrix:
go-version:
- 1.24.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Test SQLite3 - with -race check
if: runner.os != 'Windows'
run: cd ./sqlite3 && go test ./... -v -race
- name: Test SQLite3 - without -race check
if: runner.os == 'Windows'
run: cd ./sqlite3 && go test ./... -v

View File

@@ -9,7 +9,6 @@ on:
paths:
- 'surrealdb/**'
workflow_dispatch:
name: "Tests SurrealDB"
jobs:
Tests:
@@ -25,7 +24,6 @@ jobs:
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_SURREALDB_IMAGE: surrealdb/surrealdb:latest

View File

@@ -1,37 +1,34 @@
on:
push:
branches:
- master
- main
paths:
- 'testhelpers/redis/**'
pull_request:
paths:
- 'testhelpers/redis/**'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'testhelpers/redis/**'
pull_request:
paths:
- 'testhelpers/redis/**'
workflow_dispatch:
name: "Tests TestHelper Redis"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
working-directory: testhelpers/redis
run: go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
redis:
- '6'
- '7'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_REDIS_IMAGE: "docker.io/redis:${{ matrix.redis }}"
working-directory: testhelpers/redis
run: go test ./... -v -race

View File

@@ -1,48 +1,44 @@
on:
push:
branches:
- master
- main
paths:
- 'valkey/**'
pull_request:
paths:
- 'valkey/**'
- '.github/workflows/test-valkey.yml'
workflow_dispatch:
push:
branches:
- master
- main
paths:
- 'valkey/**'
pull_request:
paths:
- 'valkey/**'
- '.github/workflows/test-valkey.yml'
workflow_dispatch:
name: "Tests Valkey"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
valkey:
- '7'
- '8'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Valkey Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_VALKEY_IMAGE: "valkey/valkey:${{ matrix.valkey }}"
run: cd ./valkey && go test ./... -v -race
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.24.x
valkey:
- '7'
- '8'
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Setup Valkey Cluster
uses: vishnudxb/redis-cluster@1.0.9
with:
master1-port: 7000
master2-port: 7001
master3-port: 7002
slave1-port: 7003
slave2-port: 7004
slave3-port: 7005
sleep-duration: 10
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: '${{ matrix.go-version }}'
- name: Run Test
env:
TEST_VALKEY_IMAGE: "valkey/valkey:${{ matrix.valkey }}"
run: cd ./valkey && go test ./... -v -race