File tree Expand file tree Collapse file tree 2 files changed +35
-5
lines changed Expand file tree Collapse file tree 2 files changed +35
-5
lines changed Original file line number Diff line number Diff line change 11name : " ci"
22
33on :
4- push :
5- branches :
6- - " main"
74 pull_request :
85 branches :
96 - " main"
10- schedule :
11- - cron : " 0 0 * * *"
127 workflow_dispatch :
138
149jobs :
Original file line number Diff line number Diff line change 1+ name : " ci"
2+
3+ on :
4+ schedule :
5+ - cron : " 0 0 * * *"
6+ workflow_dispatch :
7+
8+ jobs :
9+
10+ spec :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ ruby_version :
15+ - ' 2.5'
16+ - ' 2.7'
17+ name : " spec (ruby ${{ matrix.ruby_version }})"
18+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
19+ secrets : " inherit"
20+ with :
21+ ruby_version : ${{ matrix.ruby_version }}
22+
23+ acceptance :
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ ruby_version :
28+ - ' 2.5'
29+ - ' 2.7'
30+ name : " acceptance (ruby ${{ matrix.ruby_version }})"
31+ needs : " spec"
32+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
33+ secrets : " inherit"
34+ with :
35+ ruby_version : ${{ matrix.ruby_version }}
You can’t perform that action at this time.
0 commit comments