diff options
-rw-r--r-- | .github/workflows/integration.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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 |