Skip to content

Bump faraday from 2.7.9 to 2.7.10 #88

Bump faraday from 2.7.9 to 2.7.10

Bump faraday from 2.7.9 to 2.7.10 #88

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7.7'
- '3.0.5'
- '3.1.3'
- '3.2.1'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: default
bundler-cache: true
- name: Run the test task
run: bundle exec rake test
- name: Run standardRB
run: bundle exec rake standard