Skip to content

Ansible code bot recommendations #314

Ansible code bot recommendations

Ansible code bot recommendations #314

Workflow file for this run

name: Test collection
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ansible-lint:
uses: ansible-network/github_actions/.github/workflows/ansible-lint.yml@main
changelog:
uses: ansible-network/github_actions/.github/workflows/changelog.yml@main
sanity:
uses: ansible-network/github_actions/.github/workflows/sanity.yml@main
all_green:
if: ${{ always() }}
needs:
- ansible-lint
- changelog
- sanity
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert set([
'${{ needs.ansible-lint.result }}',
'${{ needs.changelog.result }}',
'${{ needs.sanity.result }}',
]) == {'success'}"