Allow missing/empty cycle time files in timeseries #628
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: YAML Coding Norms | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
# This validation is equivalent to running on the command line: | |
# yamllint -d relaxed --no-warnings | |
# and is controlled by the .yamllint.yml file | |
jobs: | |
validate-YAML: | |
name: Check YAML Coding Norms | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: yaml-lint | |
name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
no_warnings: true | |
format: colored | |
config_file: .yamllint.yml | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: yamllint-logfile | |
path: ${{ steps.yaml-lint.outputs.logfile }} |