Skip to content

Commit 75e9caf

Browse files
committed
switch to gh actions
1 parent 084ad60 commit 75e9caf

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
ruby: ["2.5", "2.6", "2.7", "3.0"]
13+
14+
name: ${{ matrix.ruby }}
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: ${{ matrix.ruby }}
22+
bundler-cache: true
23+
24+
- run: bundle exec rake

.travis.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)