Skip to content

docs: Update README examples to use Incr and Decr methods instead… #7

docs: Update README examples to use Incr and Decr methods instead…

docs: Update README examples to use Incr and Decr methods instead… #7

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...