Skip to content

Add rake task for rspec #36

Add rake task for rspec

Add rake task for rspec #36

Workflow file for this run

name: Check
on:
push:
jobs:
check:
name: Check code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.1"
bundler-cache: true
- name: Lint with StandardRB
run: bundle exec rake standard
- name: Lint with Rubocop
run: bundle exec rake rubocop