Skip to content

Commit 2fa5e19

Browse files
committed
[CI] Add/update 'rake install', update Psych version for Ruby 3.1 gem install
1 parent f163deb commit 2fa5e19

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/macos.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ jobs:
2121
run: bundle install
2222
- name: Run test
2323
run: rake
24+
- name: Install gem
25+
run: rake install
26+
if: ${{ matrix.ruby != 'head' }}

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
run: rake
2424
- name: Install gem
2525
run: rake install
26-
if: ${{ matrix.ruby != 'head' && matrix.ruby != '3.1' }}
26+
if: ${{ matrix.ruby != 'head' }}

.github/workflows/windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ jobs:
2121
run: bundle install
2222
- name: Run test
2323
run: rake
24+
- name: Install gem
25+
run: rake install
26+
# use all possible head strings
27+
if: |
28+
!(contains('ucrt mingw mswin head', matrix.ruby))

lib/psych/versions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module Psych
44
# The version of Psych you are using
5-
VERSION = '4.0.3'
5+
VERSION = '4.0.4.dev'
66

77
if RUBY_ENGINE == 'jruby'
88
DEFAULT_SNAKEYAML_VERSION = '1.28'.freeze

0 commit comments

Comments
 (0)