diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d300b158..5e7296084 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: - markdown - socks - sso-login + - search steps: - name: Checkout diff --git a/xtask/src/ci.rs b/xtask/src/ci.rs index c2326b452..aad3b4edc 100644 --- a/xtask/src/ci.rs +++ b/xtask/src/ci.rs @@ -105,6 +105,7 @@ enum FeatureSet { Markdown, Socks, SsoLogin, + Search, } #[derive(Subcommand, PartialEq, Eq, PartialOrd, Ord)] @@ -271,6 +272,7 @@ fn run_feature_tests(cmd: Option) -> Result<()> { (FeatureSet::Markdown, "--features markdown,testing"), (FeatureSet::Socks, "--features socks,testing"), (FeatureSet::SsoLogin, "--features sso-login,testing"), + (FeatureSet::Search, "--features experimental-search"), ]); let sh = sh();