2021-04-05 02:13:32 +02:00
|
|
|
name: Lint
|
2020-12-29 22:51:02 +01:00
|
|
|
|
|
|
|
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:
|
2021-04-05 02:13:32 +02:00
|
|
|
lint:
|
|
|
|
name: Lint
|
2020-12-29 22:51:02 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-06 06:41:14 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-04-05 02:13:32 +02:00
|
|
|
- name: YAML Lint
|
2021-12-21 18:14:25 +01:00
|
|
|
uses: github/super-linter@v4
|
2020-12-29 22:51:02 +01:00
|
|
|
env:
|
2021-04-06 06:41:14 +02:00
|
|
|
VALIDATE_ALL_CODEBASE: false
|
2020-12-29 22:51:02 +01:00
|
|
|
VALIDATE_YAML: true
|
2021-04-05 02:13:32 +02:00
|
|
|
VALIDATE_PYTHON_BLACK: true
|