Skip to content

Commit

Permalink
Merge pull request #786 from varvet/kbs/update-github-workflow
Browse files Browse the repository at this point in the history
Fix GH workflow failing on jruby due to psych 5.1.1
  • Loading branch information
Burgestrand authored Oct 12, 2023
2 parents 482c19e + 42422b5 commit af78b44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failure || false }}
strategy:
fail-fast: true
fail-fast: false
matrix:
ruby-version:
- '3.0'
- '3.1'
- 'jruby-9.3.10'
- 'jruby-9.3.10' # oldest supported jruby
- 'jruby'
include: # HEAD-versions
- ruby-version: 'head'
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
source "https://rubygems.org"

gemspec

# https://github.com/ruby/psych/issues/655
gem "psych", "!= 5.1.1", platforms: %i[jruby]

0 comments on commit af78b44

Please sign in to comment.