Skip to content

Bump tailscale.com from 1.40.1 to 1.46.0 #46

Bump tailscale.com from 1.40.1 to 1.46.0

Bump tailscale.com from 1.40.1 to 1.46.0 #46

Workflow file for this run

name: Static Analysis
on: [push, pull_request]
permissions:
contents: read
jobs:
static_analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: WillAbides/[email protected]
with:
go-version: '1.20'
- name: Get dependencies
run: |
sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
go install golang.org/x/tools/cmd/goimports@latest
go install golang.org/x/lint/golint@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Vet
run: go vet ./...
- name: Goimports
run: test -z $(goimports -e -d . | tee /dev/stderr)
- name: Lint
run: golint -set_exit_status ./...
- name: Gocyclo
run: gocyclo -over 20 .
- name: Staticcheck
run: staticcheck ./...