From 5fd4b304eb6d85eff2e6face9baa1492c33215ea Mon Sep 17 00:00:00 2001 From: Andy Waite <13400+andyw8@users.noreply.github.com> Date: Thu, 3 Apr 2025 22:26:42 -0400 Subject: [PATCH] Update CI for latest Ruby versions --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c8e63c9..953917b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ["2.5", "2.6", "2.7", "3.0"] + ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"] steps: - uses: actions/checkout@v1 @@ -29,8 +29,6 @@ jobs: run: | if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then gem install bundler -v "~> 2.4.0" - else - gem install bundler fi - name: Build and run tests env: @@ -38,5 +36,4 @@ jobs: TERM: xterm CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: | - bundle install --jobs 4 --retry 3 - bundle exec rake test \ No newline at end of file + bundle exec rake test