Skip to content

Fix no/nn/nb

Fix no/nn/nb #39

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '3.0', '3.1', '3.2', '3.3' ]
task: [ 'spec' ]
include:
- ruby: '3.0' # keep in sync with rubocop.yml and gemspec
task: 'rubocop'
name: ${{ matrix.ruby }} rake
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake