24 lines
475 B
YAML
24 lines
475 B
YAML
---
|
|
name: Lint
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
yaml-lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out the codebase.
|
|
uses: actions/checkout@v3
|
|
- name: Set up Python 3.7.
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install test dependencies.
|
|
run: pip3 install yamllint
|
|
- name: Run yamllint.
|
|
run: yamllint .
|