Skip to content

feat: add rediscluster for sessions #52

feat: add rediscluster for sessions

feat: add rediscluster for sessions #52

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
lint-and-ut:
runs-on: ubuntu-latest
env:
GO111MODULE: on
GOPROXY: https://proxy.golang.org
steps:
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: 4
- name: Start redis cluster
uses: vishnudxb/[email protected]
with:
master1-port: 5000
master2-port: 5001
master3-port: 5002
slave1-port: 5003
slave2-port: 5004
slave3-port: 5005
sleep-duration: 5
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Lint
run: |
go install mvdan.cc/[email protected]
test -z "$(gofumpt -l -extra .)"
- name: Unit Test
run: go test -race -covermode=atomic -coverprofile=coverage.out ./...