Skip to content

Commit

Permalink
Add --only parameter to cli CI (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Mar 16, 2024
1 parent 9ad3843 commit 2890855
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cli_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -138,4 +142,5 @@ jobs:
run: sz test \
-c 4 \
--package-timeout-minutes 15 \
--exclude-goldens
--exclude-goldens \
--only sz_repo_cli

0 comments on commit 2890855

Please sign in to comment.