Skip to content

ci: add buildifier github action #10

ci: add buildifier github action

ci: add buildifier github action #10

Workflow file for this run

---
name: Lint YAML files
on: # yamllint disable-line rule:truthy
pull_request:
paths: ['**/*.yml', '**/*.yaml']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install yamllint
run: |
python -m pip install --upgrade pip
pip install yamllint
- name: Lint YAML files
run: |-
yamllint . || exit 1