Skip to content

Commit 91caf2e

Browse files
committed
Add GitHub Actions config and remove Travis-CI
1 parent 36f6d24 commit 91caf2e

File tree

2 files changed

+21
-41
lines changed

2 files changed

+21
-41
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on: [push, pull_request]
2+
name: Lint & Test
3+
jobs:
4+
rspec:
5+
strategy:
6+
matrix:
7+
rails: ['5.2', '6.0.4', '6.1']
8+
ruby: ['2.6', '2.7', '3.0']
9+
exclude:
10+
- rails: '5.2'
11+
ruby: '3.0'
12+
runs-on: ubuntu-latest
13+
env:
14+
RAILS_VERSION: ${{ matrix.rails }}
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: ${{ matrix.ruby }}
20+
bundler-cache: true
21+
- run: bundle exec rake

.travis.yml

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

0 commit comments

Comments
 (0)