From d3ef0d0d027abe20513a704cd8f54d1579535890 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 18 Aug 2026 12:10:49 +0800 Subject: ci: remove duplicate arg-picker CI job --- .github/workflows/ci-check-only.yml | 7 +++---- .github/workflows/ci.yml | 5 +---- 2 files changed, 4 insertions(+), 8 deletions(-) (limited to '.github') 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 ;; -- cgit