Files
opensearch-pyd/.github/workflows/integration.yml
T
Rushi Agrawal 3dc1881a9d Support both OpenDistro and OpenSearch in CI
Note that it supports only without security plugin for now

Signed-off-by: Rushi Agrawal <rushi.agr@gmail.com>
2021-08-18 01:32:55 +05:30

30 lines
570 B
YAML

name: Integration tests
on:
pull_request:
paths-ignore:
- 'README.md'
branches:
- "*"
push:
paths-ignore:
- 'README.md'
branches:
- "*"
jobs:
assemble:
name: Assemble
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
stack_version: ['7.10.2']
cluster: ["opendistro", "opensearch"]
steps:
- name: Checkout
uses: actions/checkout@v2
- run: "./.ci/run-tests ${{ matrix.cluster }} "
name: Integ ${{ matrix.stack_version }} ${{ matrix.cluster }}