Skip to content

Commit

Permalink
Add if for failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ishanjainn committed Sep 20, 2023
1 parent 0e1e096 commit 9bd3782
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/modules-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,6 @@ jobs:
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}

- name: Delete Test Stack
if: success() || failure()
run: ansible-test integration -v delete_cloud_stack --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker

Check warning on line 97 in .github/workflows/modules-test.yml

View workflow job for this annotation

GitHub Actions / Perform Linting

97:151 [line-length] line too long (161 > 150 characters)
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}

- name: Delete Test Stack
if: success() || failure()
run: ansible-test integration -v delete_cloud_stack --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker

Check warning on line 95 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / Perform Linting

95:151 [line-length] line too long (161 > 150 characters)
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}

Expand Down

0 comments on commit 9bd3782

Please sign in to comment.