Skip to content

Pre-commit update, minor updates to recipes that use DeprecationWarning #36

Pre-commit update, minor updates to recipes that use DeprecationWarning

Pre-commit update, minor updates to recipes that use DeprecationWarning #36

Workflow file for this run

---
name: yamllint
on:
push:
paths:
- "**.yaml"
- "**.yml"
pull_request:
paths:
- "**.yaml"
- "**.yml"
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint . -f parsable