From 10f1ff7a07a23c98edb1f5468ba8ebc4c621608b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 18 Dec 2019 06:19:18 +0100 Subject: [PATCH] Install xcb libraries in CI --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8527f0d..74d3ea8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,9 @@ jobs: - uses: hecrj/setup-rust-action@v1 with: rust-version: ${{ matrix.rust }} + - name: Install xcb libraries + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get install -y libxcb-shape0-dev libxcb-xfixes0-dev - uses: actions/checkout@master - name: Run tests run: cargo test --verbose