Skip to content

add some README badges #24

add some README badges

add some README badges #24

Workflow file for this run

name: Kredis Go test suite
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20', '1.21.x' ]
redis-version: [4, 5, 6, 7]
steps:
- uses: actions/checkout@v4
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go run gotest.tools/gotestsum@latest