Skip to content

improve: Added Github Action CI #1

improve: Added Github Action CI

improve: Added Github Action CI #1

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.8
bundler-cache: true
- name: RuboCop
run: bundle exec rubocop
- name: RSpec
run: bundle exec rspec