File tree Expand file tree Collapse file tree 6 files changed +43
-105
lines changed Expand file tree Collapse file tree 6 files changed +43
-105
lines changed Original file line number Diff line number Diff line change 1+ name : " ci"
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - " main"
7+ workflow_dispatch :
8+
9+ jobs :
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 }}
Original file line number Diff line number Diff line change 1+ name : " nightly"
2+
3+ on :
4+ schedule :
5+ - cron : " 0 0 * * *"
6+ workflow_dispatch :
7+
8+ jobs :
9+ spec :
10+ strategy :
11+ fail-fast : false
12+ matrix :
13+ ruby_version :
14+ - ' 2.5'
15+ - ' 2.7'
16+ name : " spec (ruby ${{ matrix.ruby_version }})"
17+ uses : " puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
18+ secrets : " inherit"
19+ with :
20+ ruby_version : ${{ matrix.ruby_version }}
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
22
33gem 'bolt'
44gem 'puppet_litmus'
5+
56ruby_version_segments = Gem ::Version . new ( RUBY_VERSION . dup ) . segments
67minor_version = ruby_version_segments [ 0 ..1 ] . join ( '.' )
78group :development do
@@ -12,6 +13,7 @@ group :development do
1213 gem 'github_changelog_generator' , require : false if Gem ::Version . new ( RUBY_VERSION . dup ) >= Gem ::Version . new ( '2.5.0' )
1314 gem 'io-event' , '0.4.0' # later versions require Ruby 3
1415 gem 'webmock'
16+ gem 'concurrent-ruby' , '= 1.1.10' , require : false
1517end
1618
1719# Evaluate Gemfile.local and ~/.gemfile if they exist
You can’t perform that action at this time.
0 commit comments