Use Guthub Actions

This commit is contained in:
kojix2 2020-11-19 22:42:47 +09:00
parent 58ba6bb966
commit 648e606ed4
2 changed files with 15 additions and 7 deletions

15
.github/ci.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rake test

View File

@ -1,7 +0,0 @@
language: ruby
rvm: 2.7
script: bundle exec rake test
notifications:
email:
on_success: never
on_failure: change