We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b6205e commit a155e40Copy full SHA for a155e40
.github/workflows/tests.yml
@@ -65,20 +65,24 @@ jobs:
65
"python": "3.12"
66
}
67
]
68
+ integration:
69
+ uses: ansible/ansible-content-actions/.github/workflows/integration.yaml@main
70
all_green:
71
if: ${{ always() }}
72
needs:
73
- build-import
74
- sanity
75
- unit-galaxy
76
- ansible-lint
77
+ - integration
78
runs-on: ubuntu-latest
79
steps:
80
- run: >-
81
python -c "assert 'failure' not in
82
set([
83
'${{ needs.sanity.result }}',
- '${{ needs.unit-galaxy.result }}'
- '${{ needs.ansible-lint.result }}'
- '${{ needs.build-import.result }}'
84
+ '${{ needs.unit-galaxy.result }}',
85
+ '${{ needs.ansible-lint.result }}',
86
+ '${{ needs.build-import.result }}',
87
+ '${{ needs.integration.result }}'
88
])"
0 commit comments