This repository was archived by the owner on Jul 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +22
-9
lines changed Expand file tree Collapse file tree 3 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 9
9
integration-test :
10
10
name : Integration test using Python ${{ matrix.python-version }}
11
11
runs-on : ubuntu-latest
12
+ defaults :
13
+ run :
14
+ working-directory : ansible_collections/ngine_io/vultr
12
15
strategy :
13
16
fail-fast : false
14
17
matrix :
19
22
- 2.7
20
23
steps :
21
24
- name : Check out code
22
- uses : actions/checkout@v1
25
+ uses : actions/checkout@v2
23
26
with :
24
27
path : ansible_collections/ngine_io/vultr
25
28
Original file line number Diff line number Diff line change 7
7
jobs :
8
8
deploy :
9
9
runs-on : ubuntu-latest
10
+ defaults :
11
+ run :
12
+ working-directory : ansible_collections/ngine_io/vultr
10
13
steps :
11
- - uses : actions/checkout@v1
14
+ - uses : actions/checkout@v2
15
+ with :
16
+ path : ansible_collections/ngine_io/vultr
17
+
12
18
- name : Set up Python
13
- uses : actions/setup-python@v1
19
+ uses : actions/setup-python@v2
14
20
with :
15
21
python-version : ' 3.x'
22
+
16
23
- name : Install dependencies
17
24
run : |
18
25
python -m pip install --upgrade pip
19
26
pip install ansible
27
+
20
28
- name : Build and publish
21
29
env :
22
30
ANSIBLE_GALAXY_API_KEY : ${{ secrets.ANSIBLE_GALAXY_API_KEY }}
Original file line number Diff line number Diff line change 5
5
jobs :
6
6
sanity :
7
7
name : Sanity (${{ matrix.ansible }})
8
+ runs-on : ubuntu-latest
9
+ defaults :
10
+ run :
11
+ working-directory : ansible_collections/ngine_io/vultr
8
12
strategy :
9
13
matrix :
10
14
ansible :
11
15
- stable-2.10
12
16
- stable-2.9
13
17
- devel
14
- runs-on : ubuntu-latest
15
18
steps :
16
-
17
19
- name : Check out code
18
- uses : actions/checkout@v1
20
+ uses : actions/checkout@v2
19
21
with :
20
22
path : ansible_collections/ngine_io/vultr
21
23
22
- - name : Set up Python 3.6
23
- uses : actions/setup-python@v1
24
+ - name : Set up Python
25
+ uses : actions/setup-python@v2
24
26
with :
25
- python-version : 3.6
27
+ python-version : ' 3.x '
26
28
27
29
- name : Install ansible-base (${{ matrix.ansible }})
28
30
run : pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
You can’t perform that action at this time.
0 commit comments