Add: test cases collection for TAC interaction for EATL logging #1336 #584
Workflow file for this run
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: | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| lintAllTheThings: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: yaml-lint | |
| uses: ibiqlik/action-yamllint@v3 | |
| with: | |
| format: github | |
| config_data: | | |
| extends: default | |
| strict: true | |
| ignore: | | |
| /server/ | |
| /testing/ | |
| rules: | |
| line-length: disable | |
| document-start: disable |