Add Ruby 4.0 to test matrix

This commit is contained in:
Sami Samhuri 2026-01-01 18:34:12 -08:00
parent 4de5a572c2
commit 5b4f47babf
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@ jobs:
tests: tests:
strategy: strategy:
matrix: matrix:
ruby: ["3.4", "3.3", "3.2"] ruby: ["4.0", "3.4", "3.3", "3.2"]
name: Tests - Ruby ${{ matrix.ruby }} name: Tests - Ruby ${{ matrix.ruby }}
# Set the type of machine to run on # Set the type of machine to run on
@ -38,7 +38,7 @@ jobs:
- name: Bundle install - name: Bundle install
run: | run: |
bundle config path vendor/bundle bundle config path vendor/bundle
bundle install --jobs 4 --retry 3 --without development bundle install --jobs 8 --retry 3 --without development
- name: Run tests - name: Run tests
run: | run: |

View file

@ -12,12 +12,12 @@ jobs:
steps: steps:
- name: Check out code - name: Check out code
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Set up Ruby - name: Set up Ruby
uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: "3.4" ruby-version: "4.0"
bundler-cache: true bundler-cache: true
- name: Run rubocop - name: Run rubocop