Skip to content

Commit bb9c561

Browse files
authored
Merge pull request #23 from puppetlabs/fix-overwriting-puppet8-ruby-version
Fix overwriting ruby version for puppet8 testing
2 parents 362662d + e09af69 commit bb9c561

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ jobs:
1616
- puppet_version: '8'
1717
ruby: '3.1'
1818

19-
- os: 'ubuntu-latest'
20-
ruby: '2.7'
21-
extra_steps: 'gem install multi_json -v 1.15.0'
2219
- os: 'ubuntu-latest'
2320
os_type: 'Linux'
2421
env_set_cmd: 'export '
2522
gem_file: 'puppet-latest.gem'
23+
extra_steps: |
24+
if [[ ${{ matrix.ruby }} == "2.7" ]]; then
25+
gem install multi_json -v 1.15.0
26+
fi
2627
- os: 'macos-latest'
2728
os_type: 'macOS'
2829
env_set_cmd: 'export '

0 commit comments

Comments
 (0)