feat(golang-rewrite): correct asdf-version workflow step to produce version as output (second attempt) #308
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: 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 |