Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
fail-fast: false
matrix:
rvm:
- 2.6
- 2.5
- 2.4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ruby/setup-ruby@v1
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/Gemfile
with:
ruby-version: ${{ matrix.rvm }}
bundler-cache: true
# Run bundle install outside the workspace to keep gems out of the
# repo checkout.
working-directory: ${{ runner.temp }}
- run: |
bundle exec rake
# TODO: migrate Travis settings below:
# notifications:
# email:
# recipients:
# - [email protected]
# on_success: change
# on_failure: change

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.