Skip to content

fix: authassignment is now a string #191

fix: authassignment is now a string

fix: authassignment is now a string #191

Workflow file for this run

name: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: make test