From cff10f686c0bb18417ba67d5263107c185248189 Mon Sep 17 00:00:00 2001 From: An Phan Date: Fri, 25 Oct 2024 22:10:14 -0700 Subject: [PATCH] ci: no password in db connection --- .github/workflows/install-lint-test-on-ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install-lint-test-on-ubuntu.yml b/.github/workflows/install-lint-test-on-ubuntu.yml index 2114ae6be..906182004 100644 --- a/.github/workflows/install-lint-test-on-ubuntu.yml +++ b/.github/workflows/install-lint-test-on-ubuntu.yml @@ -68,7 +68,7 @@ jobs: run: | python -m alembic upgrade head env: - DATABASE_URL: mysql+pymysql://root:@127.0.0.1/test + DATABASE_URL: mysql+pymysql://root@127.0.0.1/test - name: Lint Code run: make lint