Skip to content

Merge pull request #15 from Jacalz/go1.19-gopherjs-removal #16

Merge pull request #15 from Jacalz/go1.19-gopherjs-removal

Merge pull request #15 from Jacalz/go1.19-gopherjs-removal #16

name: Static Analysis
on: [push, pull_request]
permissions:
contents: read
jobs:
static_analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: WillAbides/setup-go-faster@v1.13.0
with:
go-version: '1.21.x'
- 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 github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6
- 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: Staticcheck
run: staticcheck ./...