File tree Expand file tree Collapse file tree 2 files changed +29
-5
lines changed Expand file tree Collapse file tree 2 files changed +29
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
release :
11
- runs-on : ubuntu-18 .04
11
+ runs-on : ubuntu-20 .04
12
12
steps :
13
13
- name : galaxy
14
14
uses :
robertdebock/[email protected]
Original file line number Diff line number Diff line change @@ -3,16 +3,34 @@ name: molecule test
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
6
+ - main
7
7
types : [opened, synchronize, reopened]
8
8
schedule :
9
9
- cron : ' 0 6 * * 0'
10
10
jobs :
11
11
repo :
12
12
name : Test Repo Runner
13
- runs-on : ubuntu-18 .04
13
+ runs-on : ubuntu-20 .04
14
14
strategy :
15
15
fail-fast : true
16
+ matrix :
17
+ config :
18
+ - os : " centos7"
19
+ tag : " latest"
20
+ - os : " centos8"
21
+ tag : " latest"
22
+ - os : " debian9"
23
+ tag : " latest"
24
+ - os : " debian10"
25
+ tag : " latest"
26
+ - os : " fedora33"
27
+ tag : " latest"
28
+ - os : " ubuntu16"
29
+ tag : " latest"
30
+ - os : " ubuntu18"
31
+ tag : " latest"
32
+ - os : " ubuntu20"
33
+ tag : " latest"
16
34
steps :
17
35
- name : checkout
18
36
uses : actions/checkout@v2
@@ -23,10 +41,14 @@ jobs:
23
41
env :
24
42
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
25
43
with :
44
+ os : ${{ matrix.config.os }}
45
+ tag : ${{ matrix.config.tag }}
26
46
molecule_command : test
47
+ scenario : repo
48
+
27
49
org :
28
50
name : Test Org Runner
29
- runs-on : ubuntu-18 .04
51
+ runs-on : ubuntu-20 .04
30
52
strategy :
31
53
fail-fast : true
32
54
steps :
39
61
env :
40
62
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
41
63
with :
64
+ os : ${{ matrix.config.os }}
65
+ tag : ${{ matrix.config.tag }}
42
66
molecule_command : test
43
- scenario : organization
67
+ scenario : org
You can’t perform that action at this time.
0 commit comments