Skip to content

Commit

Permalink
Test against Ruby 3.4 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
KitaitiMakoto committed Dec 25, 2024
1 parent 18ba649 commit 8086906
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,21 @@ test:3.3:
paths:
- deps

test:3.4:
image: ruby:3.4
script: bundle exec rake test XML_BACKEND=REXML 2>/dev/null && bundle exec rake test XML_BACKEND=Oga 2>/dev/null && bundle exec rake test XML_BACKEND=Nokogiri 2>/dev/null
except:
- tags
cache:
key: ruby:3.4
paths:
- deps

pages:
stage: deploy
image: ruby:3.3
image: ruby:3.4
dependencies:
- test:3.3
- test:3.4
script:
- bundle exec rake test doc:yard
- mv doc public
Expand All @@ -79,6 +89,6 @@ pages:
only:
- master
cache:
key: ruby:3.3
key: ruby:3.4
paths:
- deps

0 comments on commit 8086906

Please sign in to comment.