Skip to content

Move module to github.com/tailscale after inet.af was lost #84

Move module to github.com/tailscale after inet.af was lost

Move module to github.com/tailscale after inet.af was lost #84

Workflow file for this run

name: staticcheck
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
staticcheck:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check license
run: ./check_license_headers.sh .
- name: Run staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck
GOOS=windows $(go list -f {{.Target}} honnef.co/go/tools/cmd/staticcheck) -checks=inherit,-SA1019