Skip to content

Update docs

Update docs #17

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request:
env:
go-version: '1.20'
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.go-version }}
- run: make go-deps
- run: make test