mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-12-24 20:35:03 -07:00
c85155f69d
* Install and run gofumpt in Golang lint workflow * Remove golangci-lint * Run gofumpt and fix revive linter errors
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
env:
|
|
PYTHON_MIN_VERSION: "3.7.13"
|
|
|
|
jobs:
|
|
asdf-bash:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: asdf-vm/actions/install@v3
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ env.PYTHON_MIN_VERSION }}
|
|
- 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: Install gofumpt for formatting
|
|
run: go install mvdan.cc/gofumpt@latest
|
|
- name: Run 'gofumpt'
|
|
run: gofumpt -l -w .
|
|
- name: Check format
|
|
run: '[ -z "$(gofmt -l ./...)" ]'
|
|
- name: Install revive for linting
|
|
run: go install github.com/mgechev/revive@latest
|
|
- name: Run 'revive'
|
|
run: revive -set_exit_status ./...
|
|
- 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 ./...
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check workflow files
|
|
uses: docker://rhysd/actionlint:1.6.24
|
|
with:
|
|
args: -color
|