chore(guide): Custom Format language fix for the 3rd party TRaSH Sync… #2645
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 - YAML | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Run yamllint | |
run: | | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":/yaml \ | |
peterdavehello/yamllint \ | |
yamllint \ | |
-c "/yaml/yamllint.yml" \ | |
. |