Skip to content

Merge pull request #13 from myobie/wordchar-patch #2

Merge pull request #13 from myobie/wordchar-patch

Merge pull request #13 from myobie/wordchar-patch #2

Workflow file for this run

name: CI
# NOTE: both main and master so it can be swapped later without disruption
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-ruby@v1
with:
ruby-version: 3.2
- name: bundle install
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: rake spec
run: bundle exec rake spec