From a14b39555e5c480422c24df7d708dd1addd0a67b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 18 Dec 2019 07:45:49 +0100 Subject: Allow clipboard access in `Widget::on_event` --- .github/workflows/build.yml | 2 ++ .github/workflows/test.yml | 3 +++ 2 files changed, 5 insertions(+) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 804273ff..65a4f0a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: hecrj/setup-rust-action@v1 + - name: Install xcb libraries + run: sudo apt-get install -y libxcb-shape0-dev libxcb-xfixes0-dev - name: Install cargo-deb run: cargo install cargo-deb - uses: actions/checkout@master diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f911303..09e52f92 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,9 @@ jobs: with: rust-version: ${{ matrix.rust }} - uses: actions/checkout@master + - name: Install xcb libraries + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get install -y libxcb-shape0-dev libxcb-xfixes0-dev - name: Run tests run: | cargo test --verbose --all -- cgit