Add PyYAML warning in interactive_console.py (fix #167) (#172) #39
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
# yamllint disable rule:line-length | |
name: YAML Validation | |
on: | |
pull_request: | |
push: | |
jobs: | |
validate-yaml: | |
name: Validate YAML | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run YAML linter | |
run: | | |
find . -path \*/vendor -prune -false -o -name \*.y*ml | xargs yamllint -d relaxed |