Move test requirements out of github action workflow

This commit is contained in:
Shane McDonald
2021-09-29 18:38:28 -04:00
parent ccff76dec5
commit eaa4d33aea
3 changed files with 17 additions and 9 deletions

View File

@@ -24,18 +24,11 @@ jobs:
- name: Install Dependencies
run: |
pip install \
"molecule<3.5" \
molecule-docker \
yamllint \
ansible-lint \
openshift \
jmespath \
ansible-core
pip install -r molecule/requirements.txt
- name: Install Collections
run: |
ansible-galaxy collection install community.general kubernetes.core:1.2.1 operator_sdk.util community.docker
ansible-galaxy collection install -r molecule/requirements.yml
- name: Run Molecule
env:

View File

@@ -0,0 +1,7 @@
molecule
molecule-docker
yamllint
ansible-lint
openshift
jmespath
ansible-core

View File

@@ -0,0 +1,8 @@
---
collections:
- name: community.general
- name: kubernetes.core
version: 1.2.1
- name: operator_sdk.util
- name: community.docker
- name: awx.awx