From 647a3a8461d6943c1185bb3a86708ace7c54cbaa Mon Sep 17 00:00:00 2001 From: Timothy Stewart Date: Mon, 22 Jan 2024 16:32:53 -0600 Subject: [PATCH] fix(ci): fix homebrew --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27cdd5c..1f4acea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,6 +61,10 @@ jobs: python3 -m pip install -r requirements.txt echo "::endgroup::" + echo "::group::Install Ansible role requirements from collections/requirements.yml" + ansible-galaxy install -r collections/requirements.yml + echo "::endgroup::" + - name: Test with molecule run: molecule test --scenario-name ${{ matrix.scenario }} timeout-minutes: 90