Skip to content

Commit 68cc734

Browse files
committed
[skip] Switched to using GHA for running tests (5m)
1 parent 4e31114 commit 68cc734

2 files changed

Lines changed: 21 additions & 6 deletions

File tree

.github/workflows/ci.yml

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

.travis.yml

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

0 commit comments

Comments
 (0)