deleted cargo config and fmt
Some checks failed
Rust / Test (push) Failing after 1m30s
Rust / Rustfmt (push) Successful in 21s
Rust / Clippy (push) Successful in 1m14s
Rust / Code coverage (push) Failing after 1m31s

This commit is contained in:
Alphonse Paix
2025-09-28 17:07:21 +02:00
parent 271aa87b9e
commit 35c0427bd4
4 changed files with 5 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ jobs:
--locked
- name: Create app user in Postgres
run: |
sudo apt-get update && sudo apt-get install postgresql-client
sudo apt-get update && sudo apt-get install postgresql-client -y
CREATE_QUERY="CREATE USER ${APP_USER} WITH PASSWORD '${APP_USER_PWD}';"
PGPASSWORD="password" psql -U postgres -h localhost -p 15432 -c "${CREATE_QUERY}"
@@ -124,7 +124,7 @@ jobs:
--locked
- name: Create app user in Postgres
run: |
sudo apt-get update && sudo apt-get install postgresql-client
sudo apt-get update && sudo apt-get install postgresql-client -y
CREATE_QUERY="CREATE USER ${APP_USER} WITH PASSWORD '${APP_USER_PWD}';"
PGPASSWORD="password" psql -U postgres -h localhost -p 15432 -c "${CREATE_QUERY}"