Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

molecule dev test

molecule dev test #3

Workflow file for this run

---
name: Lint
# yamllint disable-line rule:truthy
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: pip3 install yamllint
- name: Run Yaml Lint
run: |
yamllint .
- name: Run Ansible Lint
uses: ansible/ansible-lint@main