Skip to content

Commit c761060

Browse files
authored
Merge pull request #4 from Oefenweb/consistency-changes
Consistency changes
2 parents 23f73cf + c2b42ea commit c761060

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.ansible-lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
warn_list:
33
- role-name
4+
- name[play]
45
- name[casing]
5-
- '204'

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
python-version: '3.x'
2424

2525
- name: Install test dependencies
26-
run: pip install ansible-lint[community,yamllint]
26+
run: |
27+
pip install ansible-lint
28+
ansible-galaxy install -r requirements.yml
2729
2830
- name: Lint code
2931
run: |
@@ -43,11 +45,8 @@ jobs:
4345
matrix:
4446
include:
4547
- distro: debian8
46-
ansible-version: '<2.10'
4748
- distro: debian9
4849
- distro: debian10
49-
- distro: ubuntu1604
50-
ansible-version: '>=2.9, <2.10'
5150
- distro: ubuntu1604
5251
ansible-version: '>=2.10, <2.11'
5352
- distro: ubuntu1604
@@ -66,7 +65,7 @@ jobs:
6665
python-version: '3.x'
6766

6867
- name: Install test dependencies
69-
run: pip install 'ansible${{ matrix.ansible-version }}' molecule[docker] docker
68+
run: pip install 'ansible${{ matrix.ansible-version }}' molecule-plugins[docker] docker
7069

7170
- name: Run Molecule tests
7271
run: |

tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tasks file
22
---
33
- name: create (download) directory
4-
file:
4+
ansible.builtin.file:
55
path: "{{ phpstorm_downloads_path }}"
66
state: directory
77
owner: root
@@ -13,7 +13,7 @@
1313
- phpstorm-download
1414

1515
- name: download
16-
get_url:
16+
ansible.builtin.get_url:
1717
url: "http://download-cf.jetbrains.com/webide/PhpStorm-{{ phpstorm_version }}.tar.gz"
1818
dest: "{{ phpstorm_downloads_path }}/PhpStorm-{{ phpstorm_version }}.tar.gz"
1919
owner: root
@@ -25,7 +25,7 @@
2525
- phpstorm-downloads
2626

2727
- name: install
28-
unarchive:
28+
ansible.builtin.unarchive:
2929
src: "{{ phpstorm_downloads_path }}/PhpStorm-{{ phpstorm_version }}.tar.gz"
3030
dest: "{{ phpstorm_install_prefix }}"
3131
creates: "{{ phpstorm_install_prefix }}/phpstorm-{{ phpstorm_version }}"

0 commit comments

Comments
 (0)