Skip to content

Add 84codes RuboCop rules #38

Add 84codes RuboCop rules

Add 84codes RuboCop rules #38

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- 3.3
- 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