integration-test #2
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: integration-test | |
on: | |
workflow_call: | |
inputs: | |
working-directory: | |
required: true | |
type: string | |
description: "From which folder this pipeline executes" | |
workflow_dispatch: | |
inputs: | |
working-directory: | |
required: true | |
type: string | |
description: "From which folder this pipeline executes" | |
env: | |
POETRY_VERSION: "1.7.1" | |
jobs: | |
build: | |
name: "make integration_tests" | |
defaults: | |
run: | |
working-directory: ${{ inputs.working-directory }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
services: | |
elasticsearch: | |
image: elasticsearch:8.13.0 | |
env: | |
discovery.type: single-node | |
xpack.license.self_generated.type: trial | |
xpack.security.enabled: false # disable password and TLS; never do this in production! | |
ports: | |
- 9200:9200 | |
options: >- | |
--health-cmd "curl --fail http://localhost:9200/_cluster/health" | |
--health-start-period 10s | |
--health-timeout 3s | |
--health-interval 3s | |
--health-retries 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }} | |
uses: "./.github/actions/poetry_setup" | |
with: | |
python-version: ${{ matrix.python-version }} | |
poetry-version: ${{ env.POETRY_VERSION }} | |
working-directory: ${{ inputs.working-directory }} | |
cache-key: integration-tests | |
- name: Install dependencies | |
shell: bash | |
run: poetry install --with=test_integration,test | |
- name: Run integration tests | |
shell: bash | |
run: make integration_test |