Skip to content

Commit

Permalink
Migrate to GitHub Workflows (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
fnordfish committed Apr 12, 2021
1 parent 502df22 commit c3f0ddd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.4", "2.5", "2.6", "2.7", "3.0", "jruby", "truffleruby"]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Run tests
timeout-minutes: 5
run: ${{matrix.env}} bundle exec rake
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit c3f0ddd

Please sign in to comment.