Skip to content

Bump version to 1.0.1 #967

Bump version to 1.0.1

Bump version to 1.0.1 #967

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: RSpec
strategy:
fail-fast: false
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3' ]
env:
DOCKER_RUBY_VERSION: ${{ matrix.ruby }}
BUNDLE_GEMFILE: gems/rails.gemfile
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rake test
rubocop:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: Run check
run: bundle exec rubocop