Skip to content

feat: Initial Release #2

feat: Initial Release

feat: Initial Release #2

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.23"
- name: install
run: |
go install -v golang.org/x/tools/cmd/goimports@latest
go install -v honnef.co/go/tools/cmd/staticcheck@latest
- name: Test
run: |
make fmt && git diff --exit-code
make imports && git diff --exit-code
make test