mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-24 20:35:03 -07:00
feat: add linting for Golang to GitHub lint workflow
This commit is contained in:
parent
71be7f83cf
commit
d8afc037c7
21
.github/workflows/lint.yml
vendored
21
.github/workflows/lint.yml
vendored
@ -10,7 +10,7 @@ env:
|
||||
PYTHON_MIN_VERSION: "3.7.13"
|
||||
|
||||
jobs:
|
||||
asdf:
|
||||
asdf-bash:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@ -21,6 +21,25 @@ jobs:
|
||||
- run: scripts/install_dependencies.bash
|
||||
- run: scripts/lint.bash --check
|
||||
|
||||
asdf-golang:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.21.5'
|
||||
- name: Install dependencies
|
||||
run: go get .
|
||||
- name: Check format
|
||||
run: '[ -z "$(gofmt -l ./...)" ]'
|
||||
- name: Vet
|
||||
run: go vet
|
||||
- name: Install staticcheck for linting
|
||||
run: go install honnef.co/go/tools/cmd/staticcheck@latest
|
||||
- name: Lint
|
||||
run: staticcheck -tests -show-ignored ./...
|
||||
|
||||
actions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
Loading…
Reference in New Issue
Block a user