Skip to content

Commit e92a720

Browse files
authored
Merge pull request #41 from ruby/fix-ci-issue
Lock psych < 5
2 parents 5d8a045 + 41cf04b commit e92a720

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
uses: ruby/setup-ruby@v1
2626
with:
2727
ruby-version: ${{ matrix.ruby }}
28-
bundler-cache: true
28+
- run: gem install rake-compiler
2929
- name: Run test
30-
run: bundle exec rake compile
30+
run: rake compile

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ group :development do
77
gem "rake"
88
gem "rake-compiler"
99
gem "rdoc"
10+
gem "psych", "< 5.0" # psych 5.0+ requires Ruby 2.7+
1011
end

0 commit comments

Comments
 (0)