Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Try without tmpfs

Try without tmpfs #62

Workflow file for this run

---
name: Molecule Test
on: [push, pull_request]
jobs:
molecule:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
scenario:
- centos7
- rocky8
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get -y install rsync
python3 -m pip install --upgrade pip
python3 -m pip install -r .github/workflows/requirements.txt
- name: Test with molecule
run: |
molecule test --scenario-name ${{ matrix.scenario }}
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"