Skip to content

Bump monolithprojects/action-molecule from 1.4.1 to 1.5.0 #33

Bump monolithprojects/action-molecule from 1.4.1 to 1.5.0

Bump monolithprojects/action-molecule from 1.4.1 to 1.5.0 #33

Workflow file for this run

---
# .github/workflows/molecule.yml
name: Molecule Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
molecule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: 'Set up Python'
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: 'Install Ansible Dependencies'
run: |
python -m pip install --upgrade pip
pip install ansible ansible-lint molecule
ansible-galaxy collection install -r requirements.yml
- name: Molecule
uses: monolithprojects/action-molecule@v1.5.0