AMW-250 Fix common_criteria_demo on Olympus #13
Workflow file for this run
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: CI | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
repository_dispatch: | |
jobs: | |
molecule: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ["3.10"] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
path: /home/runner/work/common_criteria_demo/common_criteria_demo | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install yamllint, ansible and molecule | |
run: | | |
python -m pip install --upgrade pip | |
pip install yamllint 'molecule>=6.0.3' 'molecule-plugins[docker]>=23.5.3' ansible-core flake8 ansible-lint voluptuous | |
- name: Run molecule test | |
run: | | |
ansible-galaxy collection install -r molecule/requirements.yml | |
molecule test --all | |
env: | |
PY_COLORS: "1" | |
ANSIBLE_FORCE_COLOR: "1" |