Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Introduce E2E tests execution GH workflow #5

Introduce E2E tests execution GH workflow

Introduce E2E tests execution GH workflow #5

Workflow file for this run

name: E2E tests
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
workflow_dispatch:
workflow_call:
outputs:
workflow_output:
description: "E2E output"
value: ${{ jobs.execution.outputs.run_e2e_failure }}
jobs:
execution:
runs-on: ubuntu-latest
env:
CI_VERBOSE: true
outputs:
e2e_output_failure: ${{ steps.run_e2e_failure.outputs.test_output }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: make e2e-tests
- name: Run tests failed
if: failure()
id: run_e2e_failure
run: echo "test_output=false" >> $GITHUB_OUTPUT
# TODO: Uncomment when we establish writing to log files in E2E framework
# - name: Archive test logs
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: e2e-logs
# path: e2e-logs-*/
# retention-days: 30