(maint) Update facter to e0f379e7f1b2e7455f91945ea8858e86a3f2a911 #2250
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.3 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
- 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 }} |