Fix YAML syntax error in GitHub Actions workflow

Quote environment variable values containing colons to prevent YAML parsing errors
This commit is contained in:
Claude 2025-11-10 19:35:34 +00:00
parent 94cc147fed
commit 408b419b94
No known key found for this signature in database

View file

@ -38,22 +38,22 @@ jobs:
run: |
pytest tests/unit/ -v --tb=short --cov=. --cov-report=term-missing
env:
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
TESTING: 1
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
TESTING: "1"
- name: Run functional tests
run: |
pytest tests/functional/ -v --tb=short
env:
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
TESTING: 1
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
TESTING: "1"
- name: Run integration tests
run: |
pytest tests/integration/ -v --tb=short
env:
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
TESTING: 1
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
TESTING: "1"
- name: Validate activity YAML files
run: |