Skip to content

Merge pull request #156 from cbeer/faraday #54

Merge pull request #156 from cbeer/faraday

Merge pull request #156 from cbeer/faraday #54

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.2.5'
- '3.3.4'
- jruby-9.4.8.0
solr_version: ['']
include:
- ruby: '3.3.4'
solr_version: '8.11.4'
- ruby: '3.3.4'
solr_version: '9.6.1'
env:
SOLR_WRAPPER_SOLR_VERSION: ${{ matrix.solr_version }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake
env:
ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test'