diff --git a/.github/ci.yml b/.github/ci.yml new file mode 100644 index 0000000..eb25f2b --- /dev/null +++ b/.github/ci.yml @@ -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 \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 456dd78..0000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: ruby -rvm: 2.7 -script: bundle exec rake test -notifications: - email: - on_success: never - on_failure: change \ No newline at end of file