11---
2- name : CI
2+ name : " CI "
33
44concurrency :
55 group : ${{ github.head_ref || github.run_id }}
@@ -14,45 +14,27 @@ on: # yamllint disable-line rule:truthy
1414
1515jobs :
1616 changelog :
17- uses : ansible-network/github_actions/ .github/workflows/changelog.yml @main
17+ uses : ansible/ansible-content-actions/ .github/workflows/changelog.yaml @main
1818 if : github.event_name == 'pull_request'
19+ build-import :
20+ uses : ansible/ansible-content-actions/.github/workflows/build_import.yaml@main
21+ ansible-lint :
22+ uses : ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main
1923 sanity :
20- uses : ansible-network/github_actions/.github/workflows/sanity.yml@main
21- with :
22- matrix_include : " []"
23- matrix_exclude : >-
24- [
25- {
26- "ansible-version": "stable-2.14",
27- "python-version": "3.12"
28- },
29- {
30- "ansible-version": "stable-2.15",
31- "python-version": "3.12"
32- },
33- {
34- "ansible-version": "stable-2.16",
35- "python-version": "3.9"
36- },
37- {
38- "ansible-version": "milestone",
39- "python-version": "3.9"
40- },
41- {
42- "ansible-version": "devel",
43- "python-version": "3.9"
44- },
45- ]
24+ uses : ansible/ansible-content-actions/.github/workflows/sanity.yaml@main
4625 all_green :
4726 if : ${{ always() }}
4827 needs :
4928 - changelog
29+ - build-import
5030 - sanity
31+ - ansible-lint
5132 runs-on : ubuntu-latest
5233 steps :
5334 - run : >-
5435 python -c "assert 'failure' not in
5536 set([
5637 '${{ needs.changelog.result }}',
5738 '${{ needs.sanity.result }}',
39+ '${{ needs.ansible-lint.result }}'
5840 ])"
0 commit comments