Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

editorconfig

editorconfig #32

Workflow file for this run

---
name: Ansible Lint
'on': [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
name: ansible-lint
steps:
- name: checkout codebase
uses: actions/checkout@master
- name: setup python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: install dependencies
run: pip3 install ansible ansible-lint yamllint
- name: Ansible Lint
run: ansible-lint .
- name: YAML lint
run: yamllint .