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