Skip to content

Update standard to version 1.39.0 #264

Update standard to version 1.39.0

Update standard to version 1.39.0 #264

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