From 354732ba7ff91035280c01402bc25cb8ff5f58d3 Mon Sep 17 00:00:00 2001 From: Aboobacker MK Date: Wed, 8 Oct 2025 16:13:36 +0530 Subject: [PATCH 1/2] ci: Add github action --- .github/workflows/ruby.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..81ab8b1 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,29 @@ + +name: Ruby + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +permissions: + contents: read + +jobs: + test: + + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['3.0', '3.1', '3.2', '3.4'] + + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + 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 f27b870a97faf4375ee006c512614f2d070d4e15 Mon Sep 17 00:00:00 2001 From: Aboobacker MK Date: Wed, 8 Oct 2025 16:14:52 +0530 Subject: [PATCH 2/2] Delete .travis.yml --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1bfdc38..0000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: ruby -rvm: - - 1.8.7 - - 1.9.2 - - 1.9.3 - - 2.0.0 - - ruby-head - - rbx-19mode - - truffleruby-head