Add move_vm_from_on_prem_to_aws playbook and corresponding roles #283
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sanity | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
- stable-* | |
tags: | |
- '*' | |
jobs: | |
sanity: | |
uses: ansible-network/github_actions/.github/workflows/sanity.yml@main | |
with: | |
matrix_include: "[]" | |
matrix_exclude: >- | |
[ | |
{ | |
"ansible-version": "stable-2.9" | |
}, | |
{ | |
"ansible-version": "stable-2.12", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "stable-2.12", | |
"python-version": "3.11" | |
}, | |
{ | |
"ansible-version": "stable-2.13", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "stable-2.13", | |
"python-version": "3.11" | |
}, | |
{ | |
"ansible-version": "stable-2.14", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "stable-2.14", | |
"python-version": "3.8" | |
}, | |
{ | |
"ansible-version": "stable-2.15", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "stable-2.15", | |
"python-version": "3.8" | |
}, | |
{ | |
"ansible-version": "milestone", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "milestone", | |
"python-version": "3.8" | |
}, | |
{ | |
"ansible-version": "milestone", | |
"python-version": "3.9" | |
}, | |
{ | |
"ansible-version": "devel", | |
"python-version": "3.7" | |
}, | |
{ | |
"ansible-version": "devel", | |
"python-version": "3.8" | |
}, | |
{ | |
"ansible-version": "devel", | |
"python-version": "3.9" | |
} | |
] | |
all_green: | |
if: ${{ always() }} | |
needs: | |
- sanity | |
runs-on: ubuntu-latest | |
steps: | |
- run: >- | |
python -c "assert '${{ needs.sanity.result }}' | |
in ['success', 'failure']" |