Skip to content

Commit

Permalink
switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ashkulz committed Feb 1, 2021
1 parent 11e554d commit 9fe3afa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Checks

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

jobs:
ruby:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7']
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rake spec
run: bundle exec rake spec
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 9fe3afa

Please sign in to comment.