Skip to content

Commit

Permalink
Disable Ruby 2.5 from CI due to bundler crashes (revisit when fixed?)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegal committed Jun 1, 2022
1 parent cc1c674 commit a80a728
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-10.15, windows-2019]
# 3.0 is interpreted as 3
ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1]
# 3.0 is interpreted as 3. also disable 2.5 due to bundler crashes
ruby: [2.2, 2.3, 2.4, 2.6, 2.7, "3.0", 3.1]
exclude:
- { os: windows-2019 , ruby: 2.2 }
- { os: windows-2019 , ruby: 2.3 }
- { os: windows-2019, ruby: 2.2 }
- { os: windows-2019, ruby: 2.3 }
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit a80a728

Please sign in to comment.