Skip to content

Commit

Permalink
Merge pull request #3 from stratosphereips/add-yaml-validation-ci
Browse files Browse the repository at this point in the history
Create validate-yml.yml
  • Loading branch information
verovaleros authored Jul 17, 2023
2 parents 43cb3e4 + bc9d89f commit eefea52
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/validate-yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Validate-YAML

on:
pull_request:
branches: [ main ]

jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate YAML file
run: |
yamllint -d "{extends: relaxed, rules: {line-length: {max: 300}}}" data_feeds_EXAMPLE.yml

0 comments on commit eefea52

Please sign in to comment.