File tree Expand file tree Collapse file tree 3 files changed +40
-5
lines changed Expand file tree Collapse file tree 3 files changed +40
-5
lines changed Original file line number Diff line number Diff line change 18
18
with :
19
19
path : " ${{ github.repository }}"
20
20
- name : Molecule for Ansible
21
- uses : MonolithProjects/action-molecule@v1.0.1
21
+ uses : MonolithProjects/action-molecule@v1.2.0
22
22
env :
23
- PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
23
+ PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
24
+
25
+ test_install :
26
+ runs-on : ubuntu-latest
27
+ needs : test
28
+ strategy :
29
+ fail-fast : false
30
+ steps :
31
+ - name : checkout
32
+ uses : actions/checkout@v2
33
+ with :
34
+ path : " ${{ github.repository }}"
35
+ - name : Molecule for Ansible
36
+ uses :
MonolithProjects/[email protected]
37
+ env :
38
+ PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
39
+ with :
40
+ molecule_command : converge
41
+
42
+ test_uninstall :
43
+ runs-on : ubuntu-latest
44
+ needs : test_install
45
+ strategy :
46
+ fail-fast : false
47
+ steps :
48
+ - name : checkout
49
+ uses : actions/checkout@v2
50
+ with :
51
+ path : " ${{ github.repository }}"
52
+ - name : Molecule for Ansible
53
+ uses :
MonolithProjects/[email protected]
54
+ env :
55
+ PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
56
+ with :
57
+ molecule_command : converge
58
+ converge_tags : uninstall
Original file line number Diff line number Diff line change 1
1
---
2
2
- role : robertdebock.epel
3
3
version : master
4
- - role : monolithprojects.user_management
5
- version : master
4
+ # - role: monolithprojects.user_management
5
+ # version: master
Original file line number Diff line number Diff line change 69
69
tags :
70
70
- install
71
71
72
-
73
72
- name : Install dependencies on RHEL/CentOS/Fedora systems
74
73
package :
75
74
name :
79
78
- zlib
80
79
- libicu
81
80
state : present
81
+ update_cache : yes
82
82
when : (ansible_distribution == "RedHat") or
83
83
(ansible_distribution == "CentOS") or
84
84
(ansible_distribution == "Fedora")
You can’t perform that action at this time.
0 commit comments