From 2890855c05b0d2258e2e26fe17bd63de1ebe1747 Mon Sep 17 00:00:00 2001 From: Nils Reichardt Date: Sat, 16 Mar 2024 12:28:41 +0100 Subject: [PATCH] Add `--only` parameter to `cli` CI (#1411) --- .github/workflows/cli_ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli_ci.yml b/.github/workflows/cli_ci.yml index 024d19df1..7ff062154 100644 --- a/.github/workflows/cli_ci.yml +++ b/.github/workflows/cli_ci.yml @@ -99,7 +99,11 @@ jobs: - run: echo $(realpath ./bin) >> $GITHUB_PATH - name: Run code analysis via "sz analyze" (formatting, issues, spacing ...) - run: sz analyze --max-concurrent-packages 3 --package-timeout-minutes 15 + run: | + sz analyze \ + --max-concurrent-packages 3 \ + --package-timeout-minutes 15 \ + --only sz_repo_cli test: needs: changes @@ -138,4 +142,5 @@ jobs: run: sz test \ -c 4 \ --package-timeout-minutes 15 \ - --exclude-goldens + --exclude-goldens \ + --only sz_repo_cli