Cleanup.
This commit is contained in:
parent
8789540434
commit
3b0f680563
|
|
@ -38,8 +38,6 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
path: {% raw %}"${{ github.repository }}"{% endraw %}
|
|
||||||
|
|
||||||
- name: Set up Python 3.
|
- name: Set up Python 3.
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
|
@ -49,13 +47,13 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
# pip install molecule molecule-plugins[docker] docker ansible
|
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
- name: molecule
|
- name: molecule
|
||||||
run: molecule converge
|
run: molecule converge
|
||||||
env:
|
env:
|
||||||
image: {% raw %}${{ matrix.config.image }}{% endraw %}
|
image: {% raw %}${{ matrix.config.image }}{% endraw %}
|
||||||
|
|
||||||
tag: {% raw %}${{ matrix.config.tag }}{% endraw %}
|
tag: {% raw %}${{ matrix.config.tag }}{% endraw %}
|
||||||
{% if github_variables_mapping is defined %}
|
{% if github_variables_mapping is defined %}
|
||||||
{% for item in github_variables_mapping %}
|
{% for item in github_variables_mapping %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue