File tree Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change 2020 - name : Molecule for Ansible
2121 uses : MonolithProjects/action-molecule@v1.2.0
2222 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+ strategy :
28+ fail-fast : false
29+ steps :
30+ - name : checkout
31+ uses : actions/checkout@v2
32+ with :
33+ path : " ${{ github.repository }}"
34+ - name : Molecule for Ansible
35+ uses : MonolithProjects/action-molecule@v1.2.0
36+ env :
37+ PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
38+ with :
39+ molecule_command : converge
40+ converge_tags : install
41+
42+ test_uninstall :
43+ runs-on : ubuntu-latest
44+ strategy :
45+ fail-fast : false
46+ steps :
47+ - name : checkout
48+ uses : actions/checkout@v2
49+ with :
50+ path : " ${{ github.repository }}"
51+ - name : Molecule for Ansible
52+ uses : MonolithProjects/action-molecule@v1.2.0
53+ env :
54+ PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
55+ with :
56+ molecule_command : converge
57+ converge_tags : uninstall
You can’t perform that action at this time.
0 commit comments