This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
make EXTERNAL_STORAGE_DRIVE
lowercase (#7)
#36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Molecule Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
working-directory: "mirsg.provision" | |
jobs: | |
molecule: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
scenario: | |
- centos7 | |
- rocky8 | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
with: | |
path: "mirsg.provision" | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install test dependencies | |
run: | | |
sudo apt-get update && sudo apt-get -y install rsync | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r requirements.txt | |
- name: Test with molecule | |
run: | | |
molecule test --scenario-name ${{ matrix.scenario }} | |
env: | |
PY_COLORS: "1" | |
ANSIBLE_FORCE_COLOR: "1" |