An action to enable Pages and extract various metadata about a site. It can also be used to configure various static site generators we support as starter workflows.
148
stars
56
forks
source link
name: Static Analysis
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: WillAbides/setup-go-faster@v1.6.0
with:
go-version: '1.16.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 golang.org/x/lint/golint@latest
go install honnef.co/go/tools/cmd/staticcheck@v0.2.0
- name: Cleanup repository
run: rm -rf vendor/
- name: Vet
run: go vet -tags ci ./... #150
Closed
Raen123 closed 6 months ago
https://github.com/fyne-io/fyne/blob/7229e889d49c81a83b0b7e09400837f67f6ddad5/.github%2Fworkflows%2Fstatic_analysis.yml#L1-L25