Skip to content

Enable Datadog monitoring in Heimdall #204

Enable Datadog monitoring in Heimdall

Enable Datadog monitoring in Heimdall #204

name: Orchestrator Unit Tests
on:
pull_request:
paths:
- "orchestrator/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # actions/[email protected]
- name: setup python environment
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # actions/[email protected]
with:
python-version: "3.9"
architecture: "x64"
cache: pipenv
cache-dependency-path: orchestrator/Pipfile.lock
- uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # hashicorp/[email protected]
- name: Install Test Dependencies
run: |
pip install --upgrade pipenv wheel
- name: Run code style tests
run: make -C orchestrator style-test ENV=example
- name: Run orchestrator tests
run: |
make -C orchestrator unit-test ENV=example