From 2273c0156ead85f26720fecee38d953e366dd82e Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 21 Feb 2026 18:30:26 -0500 Subject: [PATCH] Clean up CI. --- .github/workflows/build.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 56bd420..29ad7fa 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,6 +23,9 @@ jobs: with: qt-version: ${{ env.QT_VERSION }} + - name: Build libclide + run: | + cargo b -p libclide --release - name: Build clide run: | cargo b --release @@ -41,7 +44,6 @@ jobs: - name: Test libclide run: | cargo test -p libclide - - name: Test clide run: | cargo test @@ -59,8 +61,7 @@ jobs: - name: Lint libclide run: | - cargo clippy --manifest-path libclide/Cargo.toml - + cargo clippy --manifest-path libclide/Cargo.toml -- -D warnings - name: Lint clide run: | - cargo clippy + cargo clippy -- -D warnings