From de45c3006d86c18c28a7b8199b7c5dae27ffb806 Mon Sep 17 00:00:00 2001 From: Norberto Lopes Date: Sat, 9 Sep 2023 21:43:46 +0100 Subject: [PATCH] chore: add postgres tests to CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb94962..5597b6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,12 @@ jobs: - name: Run test - mysql | sqlx | runtime-async-std run: rustup run ${{ matrix.toolchain }} cargo test --features mysql,sqlx,runtime-async-std --all-targets --verbose + - name: Run test - postgres | diesel + run: rustup run ${{ matrix.toolchain }} cargo test --features postgres,diesel --all-targets --verbose + + - name: Run test - postgres | sqlx | runtime-async-std + run: rustup run ${{ matrix.toolchain }} cargo test --features postgres,sqlx,runtime-async-std --all-targets --verbose + - name: Stop containers for database tests if: always() run: |