Files
opensearch-pyd/.github/workflows/integration.yml
T
Rushi Agrawal 3eac282c57 Rename 7.10.2 -> 1.0.0 everywhere
Renaming caused breakages in API versioning code, so removed that part
because we will anyways be removing the whole Elastic API versioning
logic in near future.

Also removed unused variable in .github/workflows/integration.yml

Signed-off-by: Rushi Agrawal <rushi.agr@gmail.com>
2021-08-19 09:48:02 +05:30

29 lines
508 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:
cluster: ["opendistro", "opensearch"]
steps:
- name: Checkout
uses: actions/checkout@v2
- run: "./.ci/run-tests ${{ matrix.cluster }} "
name: Integ ${{ matrix.cluster }}