From 07ef1b1e542fda1aa3ab49f7c6e44f3e6de716a3 Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Thu, 6 Jun 2024 09:11:37 -0700 Subject: [PATCH] Use depth 3 in feature powerset Closes https://github.com/roadster-rs/roadster/issues/194 --- .github/workflows/feature_powerset.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/feature_powerset.yml b/.github/workflows/feature_powerset.yml index fd037c04..7c425943 100644 --- a/.github/workflows/feature_powerset.yml +++ b/.github/workflows/feature_powerset.yml @@ -54,7 +54,7 @@ jobs: # protoc is needed to build examples that have grpc enabled - uses: taiki-e/install-action@protoc - name: Test - run: cargo hack nextest run --no-fail-fast --feature-powerset --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features + run: cargo hack nextest run --no-fail-fast --feature-powerset --depth 3 --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features - name: Check disk usage run: df -h @@ -70,7 +70,7 @@ jobs: # protoc is needed to build examples that have grpc enabled - uses: taiki-e/install-action@protoc - name: Doc test - run: cargo hack test --doc --no-fail-fast --feature-powerset --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features + run: cargo hack test --doc --no-fail-fast --feature-powerset --depth 3 --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features powerset_check: name: Powerset Check @@ -84,7 +84,7 @@ jobs: # protoc is needed to build examples that have grpc enabled - uses: taiki-e/install-action@protoc - name: Check - run: cargo hack check --feature-powerset --no-dev-deps --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features + run: cargo hack check --feature-powerset --depth 3 --no-dev-deps --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features powerset_clippy: name: Powerset Clippy @@ -98,4 +98,4 @@ jobs: # protoc is needed to build examples that have grpc enabled - uses: taiki-e/install-action@protoc - name: Clippy - run: cargo hack clippy --all-targets --feature-powerset --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features -- -D warnings + run: cargo hack clippy --all-targets --feature-powerset --depth 3 --skip default --group-features jwt-ietf,jwt --group-features jwt-openid,jwt --group-features open-api,http --clean-per-run --log-group github-actions --exclude-no-default-features --exclude-all-features -- -D warnings