refactor: rename feature stop files to feature cleanup and update doc… #24
This file contains hidden or 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: | |
| paths: | |
| - '**/*.yaml' | |
| - '**/*.yml' | |
| jobs: | |
| yamllint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install yamllint | |
| run: sudo apt-get update && sudo apt-get install -y yamllint | |
| - name: Lint YAML files | |
| run: yamllint -d relaxed . |