Skip to content
Closed
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
7 changes: 4 additions & 3 deletions .github/workflows/unit_tests_with_nightly_puppet_gem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}

- name: Install multijson 1.15.0
if: startsWith(matrix.ruby, '2.7')
run: gem install multijson -v 1.15.0

- name: Install the latest nightly build of puppet${{ matrix.puppet_version }} gem
run: |
${{ matrix.extra_steps }}
curl https://nightlies.puppet.com/downloads/gems/puppet${{ matrix.puppet_version }}-nightly/${{ matrix.gem_file }} --output puppet.gem --location
if [[ ${{ matrix.ruby }} == "2.7" ]]; then
gem install multi_json -v 1.15.0
fi
gem install puppet.gem -N

- name: Prepare testing environment with bundler
Expand Down