Skip to content

Update module github.com/mudler/edgevpn to v0.26.2 #136

Update module github.com/mudler/edgevpn to v0.26.2

Update module github.com/mudler/edgevpn to v0.26.2 #136

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- master
pull_request:
paths:
- '**'
concurrency:
group: static-analysis-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '~1.19.0'
- name: Get dependencies
run: |
go install golang.org/x/tools/cmd/goimports@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install golang.org/x/lint/golint@latest
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Vet
run: go vet -tags ci ./...
- name: Goimports
run: test -z $(goimports -e -d . | tee /dev/stderr)
- name: Gocyclo
run: gocyclo -over 30 .
- name: Golint
run: golint -set_exit_status $(go list -tags ci ./...)
- name: Staticcheck
run: staticcheck -go 1.12 ./...