Skip to content

Update rspec to version 3.13.0 #236

Update rspec to version 3.13.0

Update rspec to version 3.13.0 #236

Workflow file for this run

name: Ruby
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6.9', '2.7.5', '3.1.1']
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Linter
run: bundle exec rake standard
- name: Test
run: bundle exec rake spec
- name: Type Check
run: bundle exec rake steep