We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 455299f commit de6303bCopy full SHA for de6303b
.github/workflows/rust.yml
@@ -15,10 +15,16 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v3
19
- - name: Install ALSA dev libraries
20
- run: sudo apt-get update && sudo apt-get install -y libasound2-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
21
- - name: Build
22
- run: cargo build --verbose
23
- - name: Run tests
24
- run: cargo test --verbose
+ - uses: actions/checkout@v3
+ - name: Install system libraries
+ run: sudo apt-get update && sudo apt-get install -y \
+ libclang-dev \
+ libgtk-3-dev \
+ libxcb-render0-dev \
+ libxcb-shape0-dev \
25
+ libxcb-xfixes0-dev \
26
+ libxkbcommon-dev \
27
+ libssl-dev \
28
+ libudev-dev
29
+ - name: Run tests
30
+ run: cargo test --verbose
0 commit comments