Skip to content

(maint) Update facter to 2ab655b41c375ecff1520f963f2d78b6b242298f #16

(maint) Update facter to 2ab655b41c375ecff1520f963f2d78b6b242298f

(maint) Update facter to 2ab655b41c375ecff1520f963f2d78b6b242298f #16

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
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 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Update rubygems and install gems
run: |
gem update --system --silent --no-document
bundle install --jobs 4 --retry 3
- run: bundle exec rake ${{ matrix.check }}