mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
Add Ruby 4.0 to test matrix
This commit is contained in:
parent
4de5a572c2
commit
5b4f47babf
2 changed files with 4 additions and 4 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
tests:
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: ["3.4", "3.3", "3.2"]
|
||||
ruby: ["4.0", "3.4", "3.3", "3.2"]
|
||||
|
||||
name: Tests - Ruby ${{ matrix.ruby }}
|
||||
# Set the type of machine to run on
|
||||
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
- name: Bundle install
|
||||
run: |
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3 --without development
|
||||
bundle install --jobs 8 --retry 3 --without development
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
|
|
|
|||
4
.github/workflows/rubocop.yml
vendored
4
.github/workflows/rubocop.yml
vendored
|
|
@ -12,12 +12,12 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: "3.4"
|
||||
ruby-version: "4.0"
|
||||
bundler-cache: true
|
||||
|
||||
- name: Run rubocop
|
||||
|
|
|
|||
Loading…
Reference in a new issue