Skip to content

Bump actions/setup-python from 2 to 5 #19

Bump actions/setup-python from 2 to 5

Bump actions/setup-python from 2 to 5 #19

Workflow file for this run

---
name: Run molecule tests
on:
- pull_request
jobs:
molecule:
name: Run molecule
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: "${{ github.repository }}"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: "Install python dependencies"
run: |
pip install -r requirements.txt
working-directory: "${{ github.repository }}"
- name: "Run molecule manually"
run: |
molecule --debug test --scenario-name default
working-directory: "${{ github.repository }}"
env:
ANSIBLE_FORCE_COLOR: "1"
PY_COLORS: "1"