Skip to content

Commit

Permalink
Replace Travis CI with GitHub Actions (#350)
Browse files Browse the repository at this point in the history
Both on PR and push.
  • Loading branch information
olleolleolle committed Jan 12, 2021
1 parent 005ebb4 commit e64dc73
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,27 @@
name: Ruby

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- "2.5"
- "2.6"
- "2.7"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit e64dc73

Please sign in to comment.