Skip to content

Commit 12a4adb

Browse files
Molecule test
Former-commit-id: 2e4e65c
1 parent 418eecc commit 12a4adb

File tree

1 file changed

+20
-17
lines changed

1 file changed

+20
-17
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,22 @@ on:
88
schedule:
99
- cron: '0 6 * * 0'
1010
jobs:
11-
# test:
11+
test:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
steps:
16+
- name: checkout
17+
uses: actions/checkout@v2
18+
with:
19+
path: "${{ github.repository }}"
20+
- name: molecule
21+
uses: robertdebock/[email protected]
22+
env:
23+
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
24+
# uninstall:
25+
# needs:
26+
# - test
1227
# runs-on: ubuntu-latest
1328
# strategy:
1429
# fail-fast: false
@@ -19,20 +34,8 @@ jobs:
1934
# path: "${{ github.repository }}"
2035
# - name: molecule
2136
# uses: robertdebock/[email protected]
37+
# with:
38+
# entrypoint: /usr/local/bin/molecule
39+
# optionst: "converge -- --tags uninstall"
2240
# env:
23-
# PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
24-
uninstall:
25-
# needs:
26-
# - test
27-
runs-on: molecule-prebuilt:centos
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
36-
run: molecule converge -- --tags uninstall
37-
env:
38-
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
41+
# PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)