Fix name of test-configuration option #1385
This file contains hidden or 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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| ruby: | |
| - "3.2" | |
| - "3.3" | |
| - "3.4" | |
| gemfiles: | |
| - Gemfile | |
| - Gemfile.multi_json | |
| - Gemfile.rack2 | |
| - Gemfile.rack30 | |
| - Gemfile.rails6 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| - run: bundle lock --add-platform x86_64-linux && bundle install && bundle exec rake | |
| env: | |
| BUNDLE_GEMFILE: ${{ matrix.gemfile }} |