Skip to content

Bump json from 2.6.3 to 2.7.0 #836

Bump json from 2.6.3 to 2.7.0

Bump json from 2.6.3 to 2.7.0 #836

Workflow file for this run

name: ci
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
allow-failures: [false]
include:
- ruby: head
allow-failures: true
steps:
- uses: actions/checkout@v2
- name: Install system dependencies
run: |
sudo apt-get -y update
sudo apt-get -y install libhunspell-dev
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with Rake
env:
DETECT_LANGUAGE_KEY: ${{ secrets.DETECT_LANGUAGE_KEY }}
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Check source files using `rubocop`
run: rubocop
- name: Check that code 100% documented
run: yardoc . | grep -q '100.00% documented'