Skip to content

do not call callback on cancel #23

do not call callback on cancel

do not call callback on cancel #23

name: Static Analysis
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.15.x'
- name: Get dependencies
run: |
sudo apt-get update
sudo apt-get install golang gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
GO111MODULE=off go get golang.org/x/tools/cmd/goimports
GO111MODULE=off go get github.com/fzipp/gocyclo/cmd/gocyclo
GO111MODULE=off go get golang.org/x/lint/golint
GO111MODULE=off go get honnef.co/go/tools/cmd/staticcheck
- name: Cleanup repository
run: rm -rf vendor/
- name: Vet
run: go vet -tags ci ./...
- name: Goimports
run: test -z $(goimports -e -d . | tee /dev/stderr)
- name: Gocyclo
run: gocyclo -over 50 .
- name: Golint
run: golint -set_exit_status $(go list -tags ci ./...)
- name: Staticcheck
run: CGO_ENABLED=1 staticcheck -f stylish ./...