Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
jobs:
integration-test:
name: Integration test group${{matrix.group}} Py${{ matrix.python-version }}
defaults:
run:
working-directory: ansible_collections/ngine_io/cloudstack
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -23,12 +26,12 @@ jobs:
- 2
steps:
- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
path: ansible_collections/ngine_io/cloudstack

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ansible_collections/ngine_io/cloudstack
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
path: ansible_collections/ngine_io/cloudstack
- name: Set up Python
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
jobs:
sanity:
name: Sanity (${{ matrix.ansible }})
defaults:
run:
working-directory: ansible_collections/ngine_io/cloudstack
strategy:
matrix:
ansible:
Expand All @@ -13,16 +16,15 @@ jobs:
- devel
runs-on: ubuntu-latest
steps:

- name: Check out code
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
path: ansible_collections/ngine_io/cloudstack

- name: Set up Python 3.6
uses: actions/setup-python@v1
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: '3.x'

- name: Install ansible-base (${{ matrix.ansible }})
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
Expand Down