From 3b520b56c65879254e643e29acf4656bc1b78290 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Mon, 15 Sep 2025 17:06:11 +0200 Subject: [PATCH] chore: Fix command invocation in CI --- .woodpecker/build_and_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/build_and_test.yaml b/.woodpecker/build_and_test.yaml index 177739b..16d9e30 100644 --- a/.woodpecker/build_and_test.yaml +++ b/.woodpecker/build_and_test.yaml @@ -32,7 +32,7 @@ steps: - curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash - cargo binstall --no-confirm cargo-nextest - rustup default "$CHANNEL" - - cargo nextest -j4 --verbose --no-default-features --features "$FEATURES" + - cargo nextest run -j4 --verbose --no-default-features --features "$FEATURES" when: event: [pull_request, push, tag] # Only run tests for stable channel to avoid straining Codeberg's CI.