From dcf3d8bd20ce1cf235d43a286d1498ef052495e4 Mon Sep 17 00:00:00 2001 From: Olga Nemt Date: Wed, 18 Dec 2024 12:38:31 +0500 Subject: [PATCH] =?UTF-8?q?=D1=82=D0=B5=D1=81=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/test.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 1e5f7a5..94207f4 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -23,11 +23,8 @@ jobs: apt update apt install -y postgresql service postgresql start - sudo -u postgres -s psql -U postgres -d postgres -c "alter user postgres with password 'postgres'; - SELECT version(); - CREATE DATABASE persistence WITH OWNER 'postgres' ENCODING 'UTF8' - LC_COLLATE = 'ru_RU.UTF-8' - LC_CTYPE = 'ru_RU.UTF-8'" + sudo -u postgres -s psql -U postgres -d postgres -c "alter user postgres with password 'postgres'; SELECT version();" + sudo -u postgres -s psql -U postgres -d postgres -c "CREATE DATABASE persistence WITH OWNER 'postgres' ENCODING 'UTF8' LC_COLLATE = 'ru_RU.UTF-8' LC_CTYPE = 'ru_RU.UTF-8'" # - uses: pdm-project/setup-pdm@v3