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 <sjoerd@collabora.com>
This commit is contained in:
Sjoerd Simons 2023-04-19 22:08:05 +02:00
parent 89f795368c
commit f628617601

View file

@ -70,5 +70,8 @@ jobs:
- name: Run tests default features - name: Run tests default features
run: cargo test run: cargo test
- name: Run tests all features
run: cargo test --all-features
- name: Run tests no features - name: Run tests no features
run: cargo test --no-default-features run: cargo test --no-default-features