From b50b97684494c013009839c0496427fca40ed179 Mon Sep 17 00:00:00 2001 From: Elkin Aguas Date: Sat, 17 Aug 2024 12:00:21 +0200 Subject: [PATCH] Install xclip in Linux --- .github/workflows/test-clir.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-clir.yml b/.github/workflows/test-clir.yml index 91df004..1b7c5ef 100644 --- a/.github/workflows/test-clir.yml +++ b/.github/workflows/test-clir.yml @@ -20,6 +20,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - name: Install xclip + if: runner.os == 'Linux' # Run only if the OS is Linux (Ubuntu) + run: | + sudo apt-get update + sudo apt-get install xorg openbox + sudo apt-get install -y xclip xsel - name: Install poetry run: | python -m pip install --upgrade pip