chore(deps): bump the testify-modules group across 33 directories with 1 update #213
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
on: | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- 'couchbase/**' | |
pull_request: | |
paths: | |
- 'couchbase/**' | |
name: "Tests Couchbase" | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: | |
- 1.23.x | |
- 1.24.x | |
steps: | |
- name: Fetch Repository | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
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 |