summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-27 03:31:50 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-27 03:31:50 +0200
commit23bc2627e1015901a1caddc0089930d9ed706edc (patch)
tree0e9ea440dcb32bb939c977f6881817d9b5acc227 /.github/workflows
parent016d2e271b9f6f605b6b4935989c4b1acc263a2f (diff)
downloadiced-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.yml7
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