aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci-check-only.yml7
-rw-r--r--.github/workflows/ci.yml5
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 ;;