Skip to content

Commit e291e0a

Browse files
committed
delete travis config and add github workflow
1 parent a1333c6 commit e291e0a

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

.github/workflows/ruby.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Ruby CI
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
ruby-version: ['2.3.7', '2.4.4', '2.5.1', 'head', 'jruby-19mode']
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up Ruby
14+
uses: ruby/setup-ruby@v1
15+
with:
16+
ruby-version: ${{ matrix.ruby-version }}
17+
bundler-cache: true
18+
- name: Run bundle install
19+
run: |
20+
gem install bundler
21+
bundle install

.travis.yml

-9
This file was deleted.

0 commit comments

Comments
 (0)