Skip to content

Commit

Permalink
ci(lint): escape new lines in sqlx-cli install step
Browse files Browse the repository at this point in the history
Signed-off-by: Sandro-Alessio Gierens <[email protected]>
  • Loading branch information
gierens committed Dec 29, 2024
1 parent 2f1ac7f commit 268d9de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 268d9de

Please sign in to comment.