BARN-180: Add find_all_tokens method to parameter substitution to all… #68
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: Unit Tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: [3.1, 3.2, 3.3, 3.4] | |
| gemfile: | |
| - Gemfile | |
| - gemfiles/activesupport_7_0.gemfile | |
| - gemfiles/activesupport_7_1.gemfile | |
| - gemfiles/activesupport_7_2.gemfile | |
| - gemfiles/activesupport_8_0.gemfile | |
| exclude: | |
| - ruby: 3.1 | |
| gemfile: gemfiles/activesupport_8_0.gemfile | |
| env: | |
| BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler: 2.3.9 | |
| bundler-cache: true | |
| - run: bundle exec rspec |