diff --git a/action.yml b/action.yml index 7201d56..e044992 100644 --- a/action.yml +++ b/action.yml @@ -62,6 +62,25 @@ outputs: runs: using: composite steps: + - name: Open an expandable block of code + run: >- + echo ::group::Ensure clean test environment + shell: bash + - name: Ensure clean test environment + run: >- + set -x + ; + rm -rf + ansible_collections + .tmp-ansible-collection-checkout + ; + set +x + shell: bash + - name: Close an expandable block of code + run: >- + echo ::endgroup:: + shell: bash + - name: Open an expandable block of code run: >- echo ::group::Setting controller Python @@ -156,7 +175,7 @@ runs: echo ::group::Move "'${{ steps.collection-metadata.outputs.fqcn }}'" collection to ${{ steps.collection-metadata.outputs.checkout-path }}... shell: bash - - name: Install ansible-core (${{ inputs.ansible-core-version }}) + - name: Move collection to test directory run: >- set -x ;