* Adding support to run integration tests across various versions of OpenSearch Signed-off-by: Vacha Shah <[email protected]> * Adding a compatibility matrix and getting started guide with formatting Signed-off-by: Vacha Shah <[email protected]> * Splitting jobs for opendistro and opensearch Signed-off-by: Vacha Shah <[email protected]>
19 lines
411 B
YAML
19 lines
411 B
YAML
name: Integration tests with OpenDistro
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
integration:
|
|
name: Integ
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
secured: ["true", "false"]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Integ opendistro secured=${{ matrix.secured }}
|
|
run: "./.ci/run-tests opendistro ${{ matrix.secured }}"
|