Skip to content

Enforce User-Agent header to be set. Fixes #53 #17

Enforce User-Agent header to be set. Fixes #53

Enforce User-Agent header to be set. Fixes #53 #17

Workflow file for this run

name: Go
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
- uses: actions/checkout@v2
- name: Run go vet
run: go vet ./...
- name: Run staticcheck
run: go get honnef.co/go/tools/cmd/staticcheck && ~/go/bin/staticcheck ./...
- name: Build
run: go install ./...