Add YAML Linter GHA #17
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: Format YAML | |
on: | |
push: | |
tags: '*' | |
pull_request: | |
merge_group: | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.x' | |
- name: Install dependencies | |
run: | | |
go install github.com/google/yamlfmt/cmd/yamlfmt@latest | |
- name: Format YAML files | |
run: yamlfmt config | |
- name: Check formatting diff | |
if: steps.filter.outputs.julia_file_change == 'true' | |
run: | | |
git diff --color=always --exit-code |