Skip to content

Commit

Permalink
feat: add linting for Golang to GitHub lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratus3D committed Jan 27, 2024
1 parent 0eef47d commit d0059aa
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
PYTHON_MIN_VERSION: "3.7.13"

jobs:
asdf:
asdf-bash:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -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:
Expand Down

0 comments on commit d0059aa

Please sign in to comment.