From 83d2a782f6c22d2d948dd852959fa7cf2ec391f2 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 18 Dec 2022 09:51:37 +0100 Subject: [PATCH] Switch to my fork of ansible-test-gh-action. --- .github/workflows/ansible-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index f17ce5db..7ede2702 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -38,7 +38,7 @@ jobs: ), matrix.ansible) && 'ubuntu-20.04' || 'ubuntu-latest' }} steps: - name: Perform sanity testing - uses: felixfontein/ansible-test-gh-action@integration-error-behavior + uses: felixfontein/ansible-test-gh-action@main with: ansible-core-version: stable-${{ matrix.ansible }} coverage: ${{ github.event_name == 'schedule' && 'always' || 'never' }} @@ -69,7 +69,7 @@ jobs: - name: >- Perform unit testing against Ansible version ${{ matrix.ansible }} - uses: felixfontein/ansible-test-gh-action@integration-error-behavior + uses: felixfontein/ansible-test-gh-action@main with: ansible-core-version: stable-${{ matrix.ansible }} coverage: ${{ github.event_name == 'schedule' && 'always' || 'never' }} @@ -142,12 +142,14 @@ jobs: Perform integration testing against Ansible version ${{ matrix.ansible }} under Python ${{ matrix.python }} - uses: felixfontein/ansible-test-gh-action@integration-error-behavior + uses: felixfontein/ansible-test-gh-action@main with: ansible-core-version: stable-${{ matrix.ansible }} coverage: ${{ github.event_name == 'schedule' && 'always' || 'never' }} docker-image: ${{ matrix.docker }} integration-continue-on-error: 'false' + integration-diff: 'false' + integration-retry-on-error: 'true' pre-test-cmd: >- git clone --depth=1 --single-branch https://github.com/ansible-collections/community.internal_test_tools.git ../../community/internal_test_tools ;