From 4b977262e554722054e2150e18e0bdb22227942c Mon Sep 17 00:00:00 2001 From: Yutaro SUGAI Date: Wed, 12 Nov 2025 14:27:43 +0000 Subject: [PATCH 1/2] add CI by GitHub Actions --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bd403c7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI +on: + [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['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 + - name: Run tests + run: bundle exec rspec From b5c88586c38d2e25673fd5d5b9f723a2c4e5fb44 Mon Sep 17 00:00:00 2001 From: Yutaro SUGAI Date: Wed, 12 Nov 2025 14:38:11 +0000 Subject: [PATCH 2/2] remove probably unused .travis.yml --- .travis.yml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c5da1f5..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: ruby -before_install: - - gem update --system - - gem --version -rvm: - - 2.5.0 - - 2.4.3 - - 2.4.2 - - 2.3.6 - - 2.3.5 -# - 2.2.5 - # - 2.1.10 - # - 2.0.0 - # - 1.9.3