diff options
author | 2019-12-18 07:45:49 +0100 | |
---|---|---|
committer | 2019-12-18 07:45:49 +0100 | |
commit | a14b39555e5c480422c24df7d708dd1addd0a67b (patch) | |
tree | 00404b80c27f715d3739f14d882e88241d68f0c1 /.github/workflows/test.yml | |
parent | 0f2e20f5e5b1f0658ab4e6cbe6fdda9ca97f2b36 (diff) | |
download | iced-a14b39555e5c480422c24df7d708dd1addd0a67b.tar.gz iced-a14b39555e5c480422c24df7d708dd1addd0a67b.tar.bz2 iced-a14b39555e5c480422c24df7d708dd1addd0a67b.zip |
Allow clipboard access in `Widget::on_event`
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |