Skip to content

(maint) Update puppet-runtime to 202408140 #19

(maint) Update puppet-runtime to 202408140

(maint) Update puppet-runtime to 202408140 #19

Workflow file for this run

name: Checks
on:
push:
branches: [7.x]
pull_request:
branches: [7.x]
permissions:
contents: read
jobs:
rake_checks:
name: Rake Checks
runs-on: ubuntu-latest
strategy:
matrix:
check: [ 'rubocop', 'commits' ]
steps:
- name: Checkout current PR
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Ruby version 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Update rubygems and install gems
run: |
gem update --system 3.4.22 --silent --no-document
bundle install --jobs 4 --retry 3
- run: bundle exec rake ${{ matrix.check }}