From c733cdc84e21029339b9fee5737f75eefd2b1a92 Mon Sep 17 00:00:00 2001 From: Stanislav German-Evtushenko Date: Tue, 1 Feb 2022 22:35:11 +0900 Subject: [PATCH] Temporary fix for molecule To be removed after the fix is released, see https://github.com/ansible-community/molecule/pull/3409 --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d7a6fa..758053d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,10 @@ on: schedule: - cron: "17 5 * * 2" +defaults: # TODO: Remove after the fix is released, see + run: # https://github.com/ansible-community/molecule/pull/3409 + working-directory: 'giner.barman' # + jobs: molecule: name: Molecule test @@ -27,6 +31,8 @@ jobs: steps: - name: Check out uses: actions/checkout@v2 + with: # TODO: Remove after the fix is released, see + path: 'giner.barman' # https://github.com/ansible-community/molecule/pull/3409 - name: Set up Python 3 uses: actions/setup-python@v2 with: