[DOCS] Updates README and warns user about client discontinuation in 9.x #2113
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: main | |
on: [push, pull_request] | |
jobs: | |
test-ruby: | |
env: | |
ENDPOINT: http://localhost:8080 | |
strategy: | |
matrix: | |
ruby: ['3.1', '3.2', '3.3', '3.4'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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@v4 | |
- 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 |