Skip to content

Merge pull request #163 from renan-alm/patch-1 #163

Merge pull request #163 from renan-alm/patch-1

Merge pull request #163 from renan-alm/patch-1 #163

Workflow file for this run

name: molecule lint
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
with:
path: "${{ github.repository }}"
- name: Set up Python 3.
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install ansible-lint yamllint
- name: Lint code.
run: |
ansible-lint --exclude molecule/ --exclude .github/