Skip to content

Move the scroll ID from the DELETE /_search/scroll URL to its body. #143

Move the scroll ID from the DELETE /_search/scroll URL to its body.

Move the scroll ID from the DELETE /_search/scroll URL to its body. #143

Workflow file for this run

name: pull-request-build
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@master
- name: Install cURL Headers
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev -y
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
cache: gradle
- name: Compose up
run: ./gradlew :search-client:composeUp
- name: Gradle Build
# skipping js/wasm targets because of browser related flakiness and random client failures
run: ./gradlew check -x jsTest -x jsBrowserTest -x jsNodeTest -x wasmJsBrowserTest -x wasmJsNodeTest -x wasmJsD8Test
- name: Compose down
run: ./gradlew :search-client:composeDown