From 64242d9729d7d3b2ab78ee888a6b0643319d617d Mon Sep 17 00:00:00 2001 From: Timothy Stewart Date: Tue, 1 Nov 2022 21:05:11 -0500 Subject: [PATCH] fix(ci): pin + cache --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e045c933..41bec8e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,9 +58,14 @@ jobs: cache: 'pip' # caching pip dependencies - name: Install dependencies - run: >- - python3 -m pip install --upgrade pip && + run: | + echo "::group::Upgrade pip" + python3 -m pip install --upgrade pip + echo "::endgroup::" + + echo "::group::Install Python requirements from requirements.txt" python3 -m pip install -r requirements.txt + echo "::endgroup::" - name: Test with molecule run: molecule test --scenario-name ${{ matrix.scenario }}