revert bundler version #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: stable | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [2.7, '3.0', 3.1, 3.2, ruby-head, jruby-9.4] | |
env: | |
BUNDLE_WITHOUT: "benchmark" | |
JRUBY_OPTS: "--debug" | |
SIMPLECOV_HTML_MODE: "methods" # TODO: remove after simplecov-html release | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
rubygems: latest | |
bundler-cache: true # 'bundle install' and cache | |
- name: Run tests | |
run: bundle exec rake |