From 37dbe0fdc47d5ba30377298576e3a09884eb03f4 Mon Sep 17 00:00:00 2001 From: Kaan Barmore-Genc Date: Thu, 26 Jan 2023 22:57:07 -0500 Subject: [PATCH] Split doc tests for release workflow --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 18f9ba5..1a74e3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,10 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Install Rust run: rustup toolchain install stable + - name: Run doc tests + run: cargo test --all-features --doc - name: Run tests - run: cargo test --all-features --benches --examples --tests --doc + run: cargo test --all-features --benches --examples --tests services: redis: image: redis:7-alpine