From f628617601a49318f03736c0ebe8a79e9bce5b17 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Wed, 19 Apr 2023 22:08:05 +0200 Subject: [PATCH] build: Run cargo tests with all features As tonic support is optional also run cargo test with all features enabled such that the tonic support gets tested Signed-off-by: Sjoerd Simons --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6784487..6863cee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,5 +70,8 @@ jobs: - name: Run tests default features run: cargo test + - name: Run tests all features + run: cargo test --all-features + - name: Run tests no features run: cargo test --no-default-features