Create ci.yml

This commit is contained in:
Psyreactor 2020-08-23 02:04:47 -03:00 committed by GitHub
parent 26053b7bbe
commit 2cbe44f8b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 46 additions and 0 deletions

46
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,46 @@
name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7
name: Ruby ${{ matrix.ruby }} test
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install bundler --no-document
bundle install --jobs 4 --retry 3
bundle exec rake
lint:
runs-on: ubuntu-latest
name: Rubocop lint
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.5
uses: actions/setup-ruby@v1
with:
ruby-version: 2.5
- name: Lint with Rubocop
run: |
gem install bundler --no-document
bundle install --jobs 4 --retry 3
bundle exec rake rubocop