From 70c7c574c1036324f3f6234ad37d8710e53d8682 Mon Sep 17 00:00:00 2001 From: Ali Afsharzadeh Date: Mon, 5 Jun 2023 16:50:16 +0330 Subject: [PATCH] fix: update libpq installation command --- .github/workflows/general.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index bb02e9e..735612b 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -123,7 +123,7 @@ jobs: uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable - name: Install libpq - run: sudo apt-get update && sudo apt-get install postgresql-client -y + run: sudo apt-get install libpq-dev -y - uses: Swatinem/rust-cache@v2 with: key: sqlx-${{ env.SQLX_VERSION }}