From 23d431621383f6690cd3512b8f9273aeab98f010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2?= Date: Tue, 7 Dec 2021 21:53:44 +0300 Subject: [PATCH] tweak workflows --- .github/workflows/crypto-common.yml | 2 +- .github/workflows/digest.yml | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/crypto-common.yml b/.github/workflows/crypto-common.yml index bc45c25b4..1155de5c3 100644 --- a/.github/workflows/crypto-common.yml +++ b/.github/workflows/crypto-common.yml @@ -35,7 +35,7 @@ jobs: target: ${{ matrix.target }} override: true profile: minimal - - run: cargo build --no-default-features --release --target ${{ matrix.target }} + - run: cargo build --target ${{ matrix.target }} test: runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/digest.yml b/.github/workflows/digest.yml index c48c45c2f..18b7a1bdd 100644 --- a/.github/workflows/digest.yml +++ b/.github/workflows/digest.yml @@ -35,7 +35,7 @@ jobs: target: ${{ matrix.target }} override: true profile: minimal - - run: cargo build --no-default-features --release --target ${{ matrix.target }} + - run: cargo build --target ${{ matrix.target }} test: runs-on: ubuntu-latest strategy: @@ -51,8 +51,9 @@ jobs: override: true profile: minimal - run: cargo check --all-features - - run: cargo test --release - - run: cargo test --features dev --release - - run: cargo test --features alloc --release - - run: cargo test --features std --release - - run: cargo test --all-features --release + - run: cargo test --no-default-features + - run: cargo test + - run: cargo test --features dev + - run: cargo test --features alloc + - run: cargo test --features std + - run: cargo test --all-features