Skip to content

Commit

Permalink
Use Github Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mlarraz committed Feb 8, 2021
1 parent c79742b commit 409db86
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 16 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches:
- master
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- ruby-head
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
- '2.3'
- '2.2'
- '2.1'
- jruby
continue-on-error: ${{ matrix.ruby == 'ruby-head' }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: |
bundle exec rake
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 409db86

Please sign in to comment.