Bump faraday from 2.14.1 to 2.14.2 in the bundler group across 1 directory #178
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: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Ruby ${{ matrix.ruby }} | |
| strategy: | |
| matrix: | |
| ruby: | |
| - "3.2" | |
| - "3.3" | |
| - "3.4" | |
| - "4.0" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| bundler: latest | |
| env: | |
| BUNDLE_FROZEN: "false" | |
| - name: Download the bun executable for integration tests | |
| run: bundle exec rake bundlebun:download | |
| - name: Run RSpec | |
| run: bundle exec rake | |
| build-windows: | |
| runs-on: windows-2025 | |
| name: Ruby on Windows | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.4" | |
| bundler-cache: true | |
| bundler: latest | |
| env: | |
| BUNDLE_FROZEN: "false" | |
| - name: Download the bun executable for integration tests | |
| run: bundle exec rake bundlebun:download | |
| - name: Run RSpec | |
| run: bundle exec rake |