2020-12-29 22:51:02 +01:00
|
|
|
name: ❄️ Lint
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
2021-12-17 14:50:57 +01:00
|
|
|
concurrency:
|
|
|
|
group: lint-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-12-29 22:51:02 +01:00
|
|
|
jobs:
|
|
|
|
yamllint:
|
|
|
|
name: 🍺 YAML
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: 🧹 YAML Lint
|
|
|
|
uses: github/super-linter@v3
|
|
|
|
env:
|
|
|
|
VALIDATE_YAML: true
|
|
|
|
FILTER_REGEX_INCLUDE: .*\.github/.*
|