From c192007599ac9a1944968fd92846edfe33ebc469 Mon Sep 17 00:00:00 2001 From: Lucas <24826124+Luro02@users.noreply.github.com> Date: Wed, 5 May 2021 17:57:08 +0200 Subject: [PATCH] ci: test pattern feature with nightly --- .github/workflows/ci.yml | 5 +++++ test | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48fffb52d..bcbecb0d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,6 +151,11 @@ jobs: cd bench ./run rust --no-run --verbose + - if: matrix.build == 'nightly' + name: Run tests with pattern feature + run: | + cargo test --test default --no-default-features --features 'std pattern' + rustfmt: name: rustfmt runs-on: ubuntu-18.04 diff --git a/test b/test index 59d57eede..b10564f12 100755 --- a/test +++ b/test @@ -21,7 +21,6 @@ features=( "std perf-dfa" "std perf-inline" "std perf-literal" - "std pattern" ) for f in "${features[@]}"; do echo "===== FEATURE: $f (default) ==="