Skip to content

Merge pull request #85 from nautobot/patch-fix_84 #107

Merge pull request #85 from nautobot/patch-fix_84

Merge pull request #85 from nautobot/patch-fix_84 #107

Workflow file for this run

---
name: "CI"
on: # yamllint disable
- "push"
- "pull_request"
jobs:
yamllint:
runs-on: "ubuntu-20.04"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v2"
- name: "Set up Python"
uses: "actions/setup-python@v2"
id: "python-setup"
with:
python-version: "3.9"
- name: "Install yamllint"
run: "pip install yamllint"
- name: "Run yamllint"
run: "yamllint ."