summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/yamllint.yml
blob: 8ff2e5a498be497b9dbfa1940021b98b836d5678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
name: YAML linting
on:
  pull_request:
    paths:
      - .github/workflows/yamllint.yml
      - .yamllint
      - '**/**.yml'
      - '**/**.yaml'
  workflow_dispatch:
jobs:
  check-formatting:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - run: sudo apt-get install yamllint
      - run: yamllint .