Skip to content

fix(install): survive asdf/pyenv shims and stop clobbering a custom ~/.zshrc #23

fix(install): survive asdf/pyenv shims and stop clobbering a custom ~/.zshrc

fix(install): survive asdf/pyenv shims and stop clobbering a custom ~/.zshrc #23

Workflow file for this run

---
name: molecule
"on":
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
molecule:
name: "molecule: ${{ matrix.scenario }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scenario:
- default
- shared
- user
- starship
steps:
- name: Check out the codebase
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install molecule "molecule-plugins[docker]" docker ansible-core pytest pytest-testinfra
ansible-galaxy collection install community.docker ansible.posix
- name: Run Molecule scenario
run: molecule test -s "${{ matrix.scenario }}"
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"