Skip to content

Commit

Permalink
Setup GH action CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshjain999 committed May 30, 2021
1 parent 7b2a52d commit 595baa7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 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]
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
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit 595baa7

Please sign in to comment.