From 7c78a1556f746a4f54b32fda022bd476e5e64cea Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 28 Nov 2024 10:50:48 +0100 Subject: [PATCH] Don't fail for no tests https://github.com/nextest-rs/nextest/pull/1648 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d8d4ff2f..3fb171065 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin - name: Build run: cargo build -p qt -p quilkin -p quilkin-xds --tests - - run: cargo nextest run -p qt -p quilkin -p quilkin-xds quilkin + - run: cargo nextest run --no-tests=pass -p qt -p quilkin -p quilkin-xds quilkin build: name: Build