Skip to content

Batching types instead of using individual TYPE calls #12

Batching types instead of using individual TYPE calls

Batching types instead of using individual TYPE calls #12

Workflow file for this run

name: test
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v2
with:
go-version: 1.21
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: run tests
run: go test -v ./...