UPdated DTC_FLAGS to be set externally to get rid of warnings for old… #48
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: Format and Commit | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
workflow_dispatch: | |
branches: | |
jobs: | |
yaml-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: YAML Lint | |
id: yaml-lint | |
uses: ibiqlik/[email protected] | |
with: | |
file_or_dir: configs | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: yamllint-logfile | |
path: ${{ steps.yaml-lint.outputs.logfile }} |