add helper functions for geotile_grid and geo_centroid #149
Workflow file for this run
This file contains 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: 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 |