Skip to content

Commit

Permalink
chore: initial github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
waltjones committed Nov 6, 2020
1 parent 4ec049a commit 4472657
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 268 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Rollbar-gem CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-16.04

strategy:
matrix:
ruby-version: [2.3.0, 2.3.8] #, 2.4.5, 2.5.3, 2.6.0]
gemfile:
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
#- gemfiles/rails51.gemfile
#- gemfiles/rails52.gemfile
#- gemfiles/rails60.gemfile

steps:
- uses: actions/checkout@v2

- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: 4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}

- name: Bundle Install
run: |
bundle config path vendor/bundle
bundle config gemfile ${{ matrix.gemfile }}
bundle install --jobs 4 --retry 3
- name: Rspec
run: bundle exec rspec
268 changes: 0 additions & 268 deletions .travis.yml

This file was deleted.

0 comments on commit 4472657

Please sign in to comment.