Skip to content

Bump rubocop from 1.86.1 to 1.88.2 #69

Bump rubocop from 1.86.1 to 1.88.2

Bump rubocop from 1.86.1 to 1.88.2 #69

Workflow file for this run

name: Ruby
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [3.3, head]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
license_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
- name: Install gems
run: bundle install
- name: Check licenses
run: bundle exec license_finder
summary:
name: CI Summary
runs-on: ubuntu-latest
needs:
- test
- license_checks
if: always()
steps:
- name: Successful builds?
run: |
if ${{ needs.test.result != 'success' }}; then exit 1; fi
if ${{ needs.license_checks.result != 'success' }}; then exit 1; fi