Use x86_64 for amd64 architecture in yamlfmt url #39
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: YAML lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
name: YAML lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20 | |
- name: Install dependencies | |
run: go install github.com/google/yamlfmt/cmd/yamlfmt@latest | |
- name: Format | |
run: yamlfmt -lint . | |