Skip to content

feat: add support for async redis writes #100

feat: add support for async redis writes

feat: add support for async redis writes #100

Workflow file for this run

name: Run Tests
# Triggers the workflow on push or pull request events
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go: ["1.18", "1.20"]
runs-on: ubuntu-20.04
name: Go ${{ matrix.go }} Tests
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run Test
run: go test -v github.com/zerodha/fastcache...
- name: Run Coverage
run: go test -v -cover github.com/zerodha/fastcache...