From 23bc2627e1015901a1caddc0089930d9ed706edc Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 27 Aug 2019 03:31:50 +0200 Subject: Install `libinput` on GitHub CI --- .github/workflows/integration.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.github/workflows/integration.yml') diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 726b7322..3b74cc80 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -8,9 +8,14 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] rust: [stable, beta] steps: - - uses: actions/checkout@master - uses: hecrj/setup-rust-action@v1 with: rust-version: ${{ matrix.rust }} + - name: Install libinput + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get -qq update + sudo apt-get install -y libudev-dev + - uses: actions/checkout@master - name: Run tests run: cargo test --verbose -- cgit