diff options
author | 2019-08-27 03:31:50 +0200 | |
---|---|---|
committer | 2019-08-27 03:31:50 +0200 | |
commit | 23bc2627e1015901a1caddc0089930d9ed706edc (patch) | |
tree | 0e9ea440dcb32bb939c977f6881817d9b5acc227 /.github/workflows | |
parent | 016d2e271b9f6f605b6b4935989c4b1acc263a2f (diff) | |
download | iced-23bc2627e1015901a1caddc0089930d9ed706edc.tar.gz iced-23bc2627e1015901a1caddc0089930d9ed706edc.tar.bz2 iced-23bc2627e1015901a1caddc0089930d9ed706edc.zip |
Install `libinput` on GitHub CI
Diffstat (limited to '.github/workflows')
-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 |