Various code cleanups and modernisations #175
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
with: | |
go-version: '1.22.x' | |
- name: Get dependencies | |
run: >- | |
sudo apt-get update && | |
sudo apt-get install | |
gcc | |
libegl1-mesa-dev | |
libgl1-mesa-dev | |
libgles2-mesa-dev | |
libx11-dev | |
xorg-dev | |
xvfb | |
bsdiff | |
- name: Install analysis tools | |
run: | | |
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@latest | |
go install github.com/mattn/goveralls@latest | |
- name: Vet | |
run: go vet ./... | |
- name: Goimports | |
run: test -z "$(goimports -e -d . | tee /dev/stderr)" | |
- name: Gocyclo | |
run: gocyclo -over 25 . | |
- name: Staticcheck | |
run: staticcheck ./... | |
- name: Update coverage | |
run: | | |
set -e | |
go test -tags ci -covermode=atomic -coverprofile=coverage.out ./... | |
- name: Update PR Coverage | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: coverage.out |