1
0
Fork 0

Try out Github actions

This commit is contained in:
Andrew Tomaka 2019-08-28 22:42:11 -04:00
parent 2a8fac125d
commit 4aab745b0e
Signed by: atomaka
GPG Key ID: 61209BF70A5B18BE
1 changed files with 36 additions and 0 deletions

36
.github/workflows/ruby.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Ruby
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler -v 1.16
bundle install --jobs 4 --retry 3
bundle exec rubocop
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [2.4.x, 2.5.x, 2.6.x]
steps:
- uses: actions/checkout@v1
- name: Set up Ruby ${{ matrix.ruby_version }}
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Build and test with Rake
run: |
gem install bundler -v 1.16
bundle install --jobs 4 --retry 3
bundle exec rspec