Skip to content

Ensure only certificates are included when parsing for sha1 check. #1673

Ensure only certificates are included when parsing for sha1 check.

Ensure only certificates are included when parsing for sha1 check. #1673

Workflow file for this run

name: Ruby Tests
on: pull_request
jobs:
rubocop:
uses: theforeman/actions/.github/workflows/rubocop.yml@v0
with:
command: bundle exec rubocop --parallel --format github
test_ruby:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '2.7.4'
- '3.0.2'
- '3.1.3'
- '3.2.1'
- '3.3.5'
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: |
bundle exec rake test