Sha256: 661346804a91ab691eef10098c3ffb08913c0896a613bc749f1c15e04d1cbe15

Contents?: true

Size: 968 Bytes

Versions: 2

Compression:

Stored size: 968 Bytes

Contents

name: main
on: [push, pull_request]

jobs:
  test-ruby:
    env:
      ENDPOINT: http://localhost:8080
    strategy:
      matrix:
        ruby: [ '3.0', '3.1', '3.2' ]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Build and test with Rake
      run: |
        sudo apt-get update
        sudo apt-get install libcurl4-openssl-dev
        ruby -v
        bundle install
        bundle exec rake spec:client
  test-jruby:
    env:
      ENDPOINT: http://localhost:3002/api/ws/v1
    strategy:
      fail-fast: false
      matrix:
        ruby: [ jruby-9.3, jruby-9.4 ]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Build and test with Rake
      run: |
        ruby -v
        bundle install
        bundle exec rake spec:client

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elastic-enterprise-search-8.9.0 .github/workflows/testing.yml
elastic-enterprise-search-8.8.0 .github/workflows/testing.yml