From 0978b296a47046684502cbb59c7d212a52b549b0 Mon Sep 17 00:00:00 2001 From: marc0246 <40955683+marc0246@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:44:20 +0100 Subject: [PATCH] Avoid double-compilation of our packages in CI (#2388) --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6d7ed917..fb2896cc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,7 @@ jobs: # run: pip install ninja - uses: actions/checkout@v3 - name: Build tests - run: cargo build --verbose + run: cargo build --tests --verbose - name: Run tests run: cargo test --verbose - name: Build examples @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build tests - run: cargo build --verbose + run: cargo build --tests --verbose - name: Run tests run: cargo test --verbose - name: Build examples @@ -44,7 +44,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build tests - run: cargo build --verbose + run: cargo build --tests --verbose - name: Run tests run: cargo test --verbose - name: Build examples