Skip to content

Bump github.com/redis/go-redis/v9 from 9.5.0 to 9.5.1 #73

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

Bump github.com/redis/go-redis/v9 from 9.5.0 to 9.5.1 #73

Workflow file for this run

name: Unit-tests
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
GO_VERSION: 1.22.0
jobs:
unittest:
name: all_unittests
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: make unittests
env:
TEST_MODIFIER: -race