Skip to content

Commit

Permalink
Introduce github actions for CI (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
toduq authored Dec 17, 2020
1 parent 16bedef commit 3e7eb70
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull Request CI

on: [ pull_request ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
name: Ruby v${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: gem install bundler
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rspec
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 3e7eb70

Please sign in to comment.