Skip to content

Commit a155e40

Browse files
committed
Update GH test workflow file to recognize integration tests
1 parent 7b6205e commit a155e40

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,24 @@ jobs:
6565
"python": "3.12"
6666
}
6767
]
68+
integration:
69+
uses: ansible/ansible-content-actions/.github/workflows/integration.yaml@main
6870
all_green:
6971
if: ${{ always() }}
7072
needs:
7173
- build-import
7274
- sanity
7375
- unit-galaxy
7476
- ansible-lint
77+
- integration
7578
runs-on: ubuntu-latest
7679
steps:
7780
- run: >-
7881
python -c "assert 'failure' not in
7982
set([
8083
'${{ needs.sanity.result }}',
81-
'${{ needs.unit-galaxy.result }}'
82-
'${{ needs.ansible-lint.result }}'
83-
'${{ needs.build-import.result }}'
84+
'${{ needs.unit-galaxy.result }}',
85+
'${{ needs.ansible-lint.result }}',
86+
'${{ needs.build-import.result }}',
87+
'${{ needs.integration.result }}'
8488
])"

0 commit comments

Comments
 (0)