From 618d813544a3506640016977ec796b7bc8a30808 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sat, 1 Jun 2024 20:24:15 +1200 Subject: [PATCH] =?UTF-8?q?ci:=20Separate=20step=20to=20install=20requirem?= =?UTF-8?q?ents=20before=20molecule=20=20=F0=9F=92=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fd6973..01d3c0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,9 @@ jobs: - name: Ensure requirements are installed run: pip install -r requirements.txt + + - name: Ensure required collections/roles are installed + run: ansible-galaxy install -r molecule/requirements.yml - name: Run Molecule tests. run: molecule test