Skip to content

Commit 240c404

Browse files
committed
switch to GitHub Actions
1 parent 99c406b commit 240c404

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

.github/workflows/checks.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Checks
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
ruby:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7']
15+
exclude:
16+
- ruby: '2.3' # there's an additional RuboCop warning Layout/TrailingEmptyLines for some reason
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: ${{ matrix.ruby }}
22+
bundler-cache: true
23+
- name: rake spec
24+
run: bundle exec rake spec
25+
continue-on-error: ${{ matrix.ruby == '2.3' }}

.travis.yml

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

0 commit comments

Comments
 (0)