DTT1 iteration 3 workflow engine unit tests #12
Workflow file for this run
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: Workflow engine unit tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.github/workflows/workflow-engine-unit-tests.yml' | |
- 'deployability/modules/workflow_engine/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10'] | |
env: | |
PYTHONPATH: /home/runner/work/wazuh-qa/wazuh-qa/deployability/modules | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'deployability/modules/workflow_engine/requirements-dev.txt' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
pip install -r deployability/modules/workflow_engine/requirements-dev.txt --no-build-isolation | |
- name: Run workflow_engine tests | |
run: python -m pytest deployability/modules/workflow_engine |