Skip to content

Bump ruby/setup-ruby from 1.207.0 to 1.215.0 #129

Bump ruby/setup-ruby from 1.207.0 to 1.215.0

Bump ruby/setup-ruby from 1.207.0 to 1.215.0 #129

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Ruby
uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1
with:
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop
rspec:
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
strategy:
fail-fast: false
matrix:
ruby:
# EOL Rubies, best effort support only
- "2.6"
- "2.7"
- "3.0"
# active support
- "3.1" # EOL: 2025-03-31 (expected)
- "3.2" # EOL: 2026-03-31 (expected)
- "3.3" # EOL: 2027-03-31 (expected)
- "3.4"
gemfile:
- gemfiles/faraday_1.gemfile
- gemfiles/faraday_2.gemfile
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Ruby
uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec