Fix is_valid_timestamp
for strings with timezone
#285
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@11bd71901bbe5b1630ceea73d27597364c9af683 # actions/checkout@v4.2.2 | |
- name: setup python environment | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # actions/setup-python@v5.4.0 | |
with: | |
python-version: "3.9" | |
architecture: "x64" | |
cache: pipenv | |
cache-dependency-path: orchestrator/Pipfile.lock | |
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # hashicorp/setup-terraform@v3.1.2 | |
- 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 |