Skip to content

Bump github.com/go-redis/cache/v8 from 8.4.3 to 8.4.4 #92

Bump github.com/go-redis/cache/v8 from 8.4.3 to 8.4.4

Bump github.com/go-redis/cache/v8 from 8.4.3 to 8.4.4 #92

Workflow file for this run

name: Go
on:
push:
branches: [ "*" ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
version: [1.15, 1.16, 1.17, 1.18, 1.19]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache: true
- name: Build
run: go build -v ./...
test:
strategy:
matrix:
version: [1.15, 1.16, 1.17, 1.18, 1.19]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache: true
- name: Unit tests
run: go test -v ./...
race-condition:
strategy:
matrix:
version: [1.15, 1.16, 1.17, 1.18, 1.19]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache: true
- name: Test race condition
run: go test -race -vet=off ./...