Explicitly specified the mode of Ox.load. #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby Specs | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '2.6.x', '2.7.x', '3.0.x' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Test with Rake | |
run: | | |
sudo apt-get install libxml2-utils | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
bundle exec rake | |
- name: Check with Rubocop | |
run: | | |
bundle exec rubocop |