Skip to content

fix: typo

fix: typo #40

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Test
run: ./test.sh
- name: Codecov
uses: codecov/[email protected]