-
Notifications
You must be signed in to change notification settings - Fork 42
53 lines (50 loc) · 1.41 KB
/
ansible-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: CI
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
branches: [main]
workflow_call:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
changelog:
uses: ansible/ansible-content-actions/.github/workflows/changelog.yaml@main
if: github.event_name == 'pull_request'
ansible-lint:
uses: ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main
sanity:
uses: ansible/ansible-content-actions/.github/workflows/sanity.yaml@main
# unit-galaxy:
# uses: ansible/ansible-content-actions/.github/workflows/unit.yaml@main
# integration:
# uses: ansible/ansible-content-actions/.github/workflows/integration.yaml@main
all_green:
if: ${{ always() }}
needs:
- changelog
- sanity
# - integration
# - unit-galaxy
- ansible-lint
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert 'failure' not in
set([
'${{ needs.changelog.result }}',
'${{ needs.sanity.result }}',
'${{ needs.ansible-lint.result }}'
])"
# python -c "assert 'failure' not in
# set([
# '${{ needs.changelog.result }}',
# '${{ needs.integration.result }}',
# '${{ needs.sanity.result }}',
# '${{ needs.unit-galaxy.result }}'
# '${{ needs.ansible-lint.result }}'
# ])"
...