diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-18 12:10:49 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-18 12:10:49 +0800 |
| commit | d3ef0d0d027abe20513a704cd8f54d1579535890 (patch) | |
| tree | 513bdfd1c8816c13c73cc975a40c9057054b44c4 /.github | |
| parent | 7ffe7fae5356729be2a4ff8075e0e7351668579b (diff) | |
ci: remove duplicate arg-picker CI job
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci-check-only.yml | 7 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
2 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/ci-check-only.yml b/.github/workflows/ci-check-only.yml index 767e098..7d31b88 100644 --- a/.github/workflows/ci-check-only.yml +++ b/.github/workflows/ci-check-only.yml @@ -16,7 +16,6 @@ jobs: build, clippy, test, - arg-picker, markdown-code, examples, docs-refresh, @@ -40,9 +39,9 @@ jobs: case "${{ matrix.item }}" in build) cargo ci build-check ;; clippy) cargo ci clippy-check ;; - # arg-picker has no dedicated command: its tests are covered by - # test-all through its mingling-ci.toml override. - test|arg-picker) cargo ci test-all ;; + # arg-picker tests are covered by test-all through its + # mingling-ci.toml override. + test) cargo ci test-all ;; # markdown-code also verifies the translated docs structure. markdown-code) cargo ci markdown-check-all && cargo ci markdown-compare-all ;; examples) cargo ci example-check ;; diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fe0862..eef6d91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,6 @@ jobs: build, clippy, test, - arg-picker, markdown-code, examples, docs-refresh, @@ -42,9 +41,7 @@ jobs: case "${{ matrix.item }}" in build) cargo ci build-check ;; clippy) cargo ci clippy-check ;; - # arg-picker has no dedicated command: its tests are covered by - # test-all through its mingling-ci.toml override. - test|arg-picker) cargo ci test-all ;; + test) cargo ci test-all ;; # markdown-code also verifies the translated docs structure. markdown-code) cargo ci markdown-check-all && cargo ci markdown-compare-all ;; examples) cargo ci example-check ;; |
