Skip to content

Commit

Permalink
Merge pull request #35 from yogeshjain999/master
Browse files Browse the repository at this point in the history
Setup GH CI action and remove travis.yml
  • Loading branch information
yogeshjain999 authored Mar 9, 2021
2 parents f7c7e76 + e966d3f commit de84d67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.5, 2.6, 2.7, '3.0', head, jruby, jruby-head]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit de84d67

Please sign in to comment.