From 4b19a0202885fccd7abf46b8418a3ac073f05ef5 Mon Sep 17 00:00:00 2001 From: Magic Len Date: Mon, 26 Apr 2021 10:49:57 +0800 Subject: [PATCH] update workflows --- .github/workflows/ci-version.yml | 2 ++ .github/workflows/ci.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci-version.yml b/.github/workflows/ci-version.yml index 638db4a..2cada98 100644 --- a/.github/workflows/ci-version.yml +++ b/.github/workflows/ci-version.yml @@ -30,8 +30,10 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true - run: cargo build --release + - run: cargo build --examples --release - run: cargo test --release - run: cargo doc --release - run: cargo build --no-default-features + - run: cargo build --examples --no-default-features - run: cargo test --no-default-features - run: cargo doc --no-default-features diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 446d7d1..0ecc7ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,8 +51,10 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true - run: cargo build + - run: cargo build --examples - run: cargo test - run: cargo doc - run: cargo build --no-default-features + - run: cargo build --examples --no-default-features - run: cargo test --no-default-features - run: cargo doc --no-default-features