Skip to content

Loosen requirement for faraday multipart - Support Ruby 4.0 #61

Loosen requirement for faraday multipart - Support Ruby 4.0

Loosen requirement for faraday multipart - Support Ruby 4.0 #61

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.0', '3.1', '3.4', '4.0' ]
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec:all