Skip to content

Add a higher level API for CLI #19

Add a higher level API for CLI

Add a higher level API for CLI #19

Workflow file for this run

name: Go
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
strategy:
matrix:
go: ['stable', 'oldstable']
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
name: Go ${{ matrix.go }} in ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
name: Install Go
with:
go-version: ${{ matrix.go }}
check-latest: true
cache: true
- name: Go Environment
run: |
go version
go env
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run Fmt
run: go fmt ./...
- name: Run Vet
run: |
go vet -stdmethods=false $(go list ./...)
go mod tidy
if ! test -z "$(git status --porcelain)"; then
echo "Please run 'go mod tidy'"
exit 1
fi
- name: Run Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: true
skip-pkg-cache: true
- name: Run Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: Run Test
run: go test -race -coverpkg=./... -coverprofile=coverage.txt ./...