From 2333d9f390206e0a4281c0f3d1a53f0f073da94c Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Wed, 10 Jun 2026 21:02:52 +0100 Subject: [PATCH] Build with clipboard feature enabled in CI Make sure building the CLI with clipboard support works. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01db284..0ba6ca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: run: cargo install wasm-bindgen-cli --version 0.2.100 if: ${{ matrix.os == 'ubuntu-latest' }} - name: Build - run: cargo build + run: cargo build --features clipboard - name: WASM build run: make wasm if: ${{ matrix.os == 'ubuntu-latest' }}