Skip to content

Update rubocop requirement from 1.84.0 to 1.85.0 #205

Update rubocop requirement from 1.84.0 to 1.85.0

Update rubocop requirement from 1.84.0 to 1.85.0 #205

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
rubocop:
name: "Rubocop"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "ruby"
bundler-cache: true
- run: bundle exec rubocop
test:
name: "Test / Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.2", "3.3", "3.4", "4.0", "head"]
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test
test-all:
name: "Test / All"
runs-on: ubuntu-latest
needs: test
if: always()
steps:
- name: All tests ok
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Some tests failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1