From a15592d9ff29b50bb83e04f6c0172cd3a69748b5 Mon Sep 17 00:00:00 2001 From: Ilia Vlasov Date: Tue, 2 Dec 2025 12:22:58 +0000 Subject: [PATCH 1/2] Build benches in github actions --- .github/workflows/build-and-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index c65cbba..c492920 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -17,5 +17,7 @@ jobs: - uses: actions/checkout@v4 - name: Build run: cargo test --workspace --verbose --no-run + - name: Build benches + run: cargo build --benches --all-features - name: Run tests run: cargo test --workspace --verbose From 5ac53c7ac4660d3fca4ece0d0bb54bb15fc39e8c Mon Sep 17 00:00:00 2001 From: Ilia Vlasov Date: Tue, 2 Dec 2025 12:35:50 +0000 Subject: [PATCH 2/2] Add all-targets --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index c492920..0ed5efa 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -18,6 +18,6 @@ jobs: - name: Build run: cargo test --workspace --verbose --no-run - name: Build benches - run: cargo build --benches --all-features + run: cargo build --benches --all-features --all-targets - name: Run tests run: cargo test --workspace --verbose