From 147e6fc2f429c31c79ead6c28829b91ef9e4bad5 Mon Sep 17 00:00:00 2001 From: "aiyion.prime" Date: Thu, 1 Aug 2024 01:01:57 +0200 Subject: [PATCH] ci: Build examples as well as the regular code --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cdfb7a4f..6a965211b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: - name: Provision toolchain run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - name: Build - run: cargo build --features test-vendored-openssl + run: cargo build --features test-vendored-openssl --examples - name: Run tests run: cargo test --features test-vendored-openssl --verbose - name: Run integration tests @@ -44,7 +44,7 @@ jobs: - name: Provision toolchain run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - name: Build - run: cargo build --features test-vendored-openssl + run: cargo build --features test-vendored-openssl --examples - name: Run tests run: cargo test --features test-vendored-openssl --verbose