Skip to content

Don't test Ruby 3.3, the rules does not support it #40

Don't test Ruby 3.3, the rules does not support it

Don't test Ruby 3.3, the rules does not support it #40

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- 3.4
- ruby-head
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
# ensure gem can be built and installed
- run: gem build rubocop-eightyfourcodes
- run: gem install *.gem