diff options
author | 2020-11-15 01:27:58 +0100 | |
---|---|---|
committer | 2020-11-15 01:27:58 +0100 | |
commit | a6a47da670f6e915c3fcb4b61b060790a21f7d75 (patch) | |
tree | 0206bad8a3a0a50337840d2686c42f5a8cba3a45 | |
parent | Remove redundant wildcard (diff) |
Make the value of the CI env var 'True'
This makes it clearer that the env var switches on or off "CI-mode"
-rw-r--r-- | .github/workflows/lint-test-build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test-build.yaml b/.github/workflows/lint-test-build.yaml index 0d83c45e..e8d4e9cc 100644 --- a/.github/workflows/lint-test-build.yaml +++ b/.github/workflows/lint-test-build.yaml @@ -105,7 +105,7 @@ jobs: coverage run manage.py test --no-input coverage report -m env: - CI: GHA + CI: True DATABASE_URL: postgres://pysite:pysite@localhost:7777/pysite METRICITY_DB_URL: postgres://pysite:pysite@localhost:7777/metricity |