From 268d9de02717909ace9da997e92f5dd17b3d0b12 Mon Sep 17 00:00:00 2001 From: Sandro-Alessio Gierens Date: Sun, 29 Dec 2024 11:22:28 +0100 Subject: [PATCH] ci(lint): escape new lines in sqlx-cli install step Signed-off-by: Sandro-Alessio Gierens --- .github/workflows/lint.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 09ee939..b8de407 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -60,12 +60,12 @@ jobs: with: key: sqlx-${{ env.SQLX_VERSION }} - name: Install sqlx-cli - run: - cargo install sqlx-cli - --version="${SQLX_VERSION}" - --features "${SQLX_FEATURES}" - --no-default-features - --locked + run: | + cargo install sqlx-cli \ + --version="${SQLX_VERSION}" \ + --features "${SQLX_FEATURES}" \ + --no-default-features \ + --locked - name: Install mariadb-client and mold run: sudo apt update && sudo apt install mariadb-client mold -y - name: Migrate database