Bump werkzeug from 3.0.4 to 3.0.6 in /orchestrator #263
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: Orchestrator Unit Tests | |
on: | |
pull_request: | |
paths: | |
- "orchestrator/**" | |
- ".github/workflows/test_orchestrator.yml" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # actions/[email protected] | |
- name: setup python environment | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # actions/[email protected] | |
with: | |
python-version: "3.9" | |
architecture: "x64" | |
cache: pipenv | |
cache-dependency-path: orchestrator/Pipfile.lock | |
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # 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 |