mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
19 lines
334 B
YAML
19 lines
334 B
YAML
|
name: Build and Test Search
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
search_sanity:
|
||
|
name: "Search Sanity Tests"
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: "Checkout Search"
|
||
|
uses: actions/checkout@v2
|
||
|
- name: "Run tests"
|
||
|
run: ./gradlew ':server:test'
|