From 204668d5ba7fea7aa084c4a94706ef5ae6a0050c Mon Sep 17 00:00:00 2001 From: stringhandler Date: Sun, 27 Aug 2023 16:11:43 +0200 Subject: [PATCH] ci: more jobs for precomputed_tables --- .github/workflows/clippy-check.yml | 5 +++++ .github/workflows/test.yml | 12 +++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clippy-check.yml b/.github/workflows/clippy-check.yml index d1b963ca..2b67068c 100644 --- a/.github/workflows/clippy-check.yml +++ b/.github/workflows/clippy-check.yml @@ -47,6 +47,11 @@ jobs: with: command: check args: --release --no-default-features + - name: Cargo check precomputed + uses: actions-rs/cargo@v1 + with: + command: check + args: --release --no-default-features --features precomputed_tables # This check here is to ensure that it builds for no-std rust targets - name: Cargo check for no-std uses: actions-rs/cargo@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f61cfc0b..da26e667 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,11 +33,21 @@ jobs: with: command: test args: --all-features + - name: test/release default features + uses: actions-rs/cargo@v1 + with: + command: test + args: --release + - name: test/release features + uses: actions-rs/cargo@v1 + with: + command: test + args: --release --no-default-features - name: test/release features uses: actions-rs/cargo@v1 with: command: test - args: --release --all-features + args: --release --no-default-features --features precomputed_tables - name: docs build uses: actions-rs/cargo@v1 with: