Skip to content

bump version to 0.21.0 #347

bump version to 0.21.0

bump version to 0.21.0 #347

Workflow file for this run

# This workflow runs RSpec tests
name: RSpec
on: [push]
jobs:
test:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes
ruby: ['3.2']
runs-on: ${{ matrix.os }}
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 rspec -f d