From 1bdf4a370fdea412437dc5db09e8ac8ae9db981a Mon Sep 17 00:00:00 2001 From: Derk-Jan Karrenbeld Date: Mon, 11 Jan 2021 02:34:29 +0100 Subject: [PATCH 1/2] Create ruby.yml --- .github/workflows/ruby.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/ruby.yml diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 0000000..e26f6ed --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,35 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby + +name: Ruby + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + test: + + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['2.6', '2.7', '3.0'] + + steps: + - uses: actions/checkout@v2 + - name: Set up Ruby + # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, + # change this to (see https://github.com/ruby/setup-ruby#versioning): + # uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Run tests + run: bundle exec rake From 4e1e0c16a23ee411464d53a2539dc47be7196186 Mon Sep 17 00:00:00 2001 From: Derk-Jan Karrenbeld Date: Mon, 11 Jan 2021 02:34:45 +0100 Subject: [PATCH 2/2] Delete .travis.yml --- .travis.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e9bee08..0000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -sudo: false -language: ruby -cache: bundler -rvm: - - 2.5 - - 2.6 - - ruby-head -before_install: - - gem install bundler -v 2.0.1 - - gem update --system - - gem --version -matrix: - allow_failures: - - rvm: ruby-head -install: - - bundle install --with development --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}