Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
puppet: '7'
- ruby: '3.2'
puppet: '8'
- ruby: '3.3'
puppet: '8'
- ruby: '3.4'
puppet: '8'
env:
PUPPET_VERSION: ${{ matrix.puppet }}

Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ gem 'puppet-strings', '>= 1.2.1'
# Do not pull in Psych 4 since it's incompatible with Puppet
gem 'rdoc', '< 6.4' if RUBY_VERSION < '3.1'

# In Ruby 3.4, the gem could moved from default gems to bundled gems and need to be listed explicitly
gem 'syslog' if RUBY_VERSION >= '3.4'

group :puppet_module do
gem 'metadata-json-lint'
gem 'puppetlabs_spec_helper'
Expand Down
Loading