diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b64ee0..fef3913 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,12 +7,9 @@ jobs: matrix: os: [ubuntu-latest] ruby: - - '2.5' - - '2.6' - - '2.7' - - '3.0' - '3.1' - '3.2' + - '3.3' - head - jruby - jruby-head @@ -28,7 +25,7 @@ jobs: - run: bundle exec rake # NOTE: calling "bundle install" because the cache apparently did not update due to the gemspec injection - run: bundle install && bundle exec standardrb - if: matrix.ruby == '3.1' # not using "head" because rubocop won't work there yet + if: matrix.ruby == '3.3' # not using "head" because rubocop won't work there yet # What's below helps having a single "status check" for mergeability, without # having to add each new version to the list of expected status checks in GitHub. # See https://github.community/t/status-check-for-a-matrix-jobs/127354/7