Skip to content

Merge pull request #38 from nekketsuuu/nekketsuuu-faraday-v2 #13

Merge pull request #38 from nekketsuuu/nekketsuuu-faraday-v2

Merge pull request #38 from nekketsuuu/nekketsuuu-faraday-v2 #13

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- 'head'
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
name: Run test with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec