From 59817083eb8e51f19809c26d20c8d1585d79652a Mon Sep 17 00:00:00 2001 From: Alphonse Paix Date: Fri, 22 Aug 2025 08:44:02 +0200 Subject: [PATCH] Update GitHub workflow --- .github/workflows/general.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index c90d1fd..5398d68 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -36,7 +36,7 @@ jobs: # Label used to access the service container postgres: # Docker Hub image - image: postgres:14 + image: postgres # Environment variables scoped only for the `postgres` element env: POSTGRES_USER: postgres @@ -79,7 +79,7 @@ jobs: - name: Run tests run: cargo test - name: Check that queries are fresh - run: cargo sqlx prepare --workspace --check -- --all-targets + run: cargo sqlx prepare --check --workspace # `fmt` container job fmt: @@ -121,7 +121,7 @@ jobs: runs-on: ubuntu-latest services: postgres: - image: postgres:14 + image: postgres env: POSTGRES_USER: postgres POSTGRES_PASSWORD: password