Skip to content

Commit

Permalink
ci: replace travis with github actions
Browse files Browse the repository at this point in the history
- add coverage for ruby 2.6, 2.7, and 3.0
  • Loading branch information
flavorjones committed Jan 23, 2021
1 parent 44e22e7 commit 444fcd8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "ci"

on:
push:
branches: [ master ]
pull_request:
branches: [ "*" ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "jruby"]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit 444fcd8

Please sign in to comment.