From 9ea54445a6ad1573595966dc6e3a56954d4a7ab8 Mon Sep 17 00:00:00 2001 From: Thomas Holloway Date: Mon, 18 Jul 2022 23:16:01 -0500 Subject: [PATCH] Update github ci to include logger feature for examples and some tests --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b2ae1ba..f58372a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,7 +31,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --all --bins --examples + args: --all --bins --examples --features logger - name: check avoid-dev-deps uses: actions-rs/cargo@v1 @@ -44,7 +44,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --all --bins --examples --tests --features unstable + args: --all --bins --examples --tests --features unstable,logger - name: check no-default-features uses: actions-rs/cargo@v1 @@ -62,13 +62,13 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --all + args: --all --features logger - name: tests unstable uses: actions-rs/cargo@v1 with: command: test - args: --all --features unstable + args: --all --features unstable,logger check_fmt_and_docs: name: Checking fmt, clippy, and docs @@ -82,7 +82,7 @@ jobs: rustc --version - name: clippy - run: cargo clippy --tests --examples -- -D warnings + run: cargo clippy --tests --examples --features logger -- -D warnings - name: fmt run: cargo fmt --all -- --check