From 7a8e1e0e3d8cee9c26dbc39a4f99846b9c195f97 Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Mon, 4 Jul 2022 19:34:11 +0400 Subject: [PATCH] **Actually** don't build examples with MSRV on CI :| --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65b4c62f..dba02ce0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,11 +102,12 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v1 + # NB. Don't test (build) examples so we can use non-msrv features in them (--tests/--doc) - name: Compile uses: actions-rs/cargo@v1 with: command: test - args: --no-run --verbose ${{ matrix.features }} + args: --tests --no-run --verbose ${{ matrix.features }} - name: Setup redis run: | @@ -115,7 +116,6 @@ jobs: redis-server --port 7778 > /dev/null & redis-server --port 7779 > /dev/null & - # NB. Don't test (build) examples so we can use non-msrv features in them - name: Test unit & integration tests uses: actions-rs/cargo@v1 with: