Skip to content

update authors

update authors #55

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: go${{ matrix.go }}-linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.19"
- "1.20"
steps:
- uses: actions/checkout@v2
- name: Set up go${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: make test
go-lint-checks:
name: go-lint-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.18"
- name: format-check
run: make format-check