Skip to content

feat: add new project #14

feat: add new project

feat: add new project #14

Workflow file for this run

name: Ansible lint
on:
push:
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 2
matrix:
python-version: [3.7, 3.10]
ansible-version: [2.10]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Ansible ${{ matrix.ansible-version }}
run: |
python -m pip install --upgrade pip
pip install ansible-lint ansible==${{ matrix.ansible-version }}
- name: Lint playbook
run: |
ansible-playbook --syntax-check */playbook.yml