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 1a97eb8 commit f88b77aCopy full SHA for f88b77a
.github/workflows/ci.yml
@@ -97,6 +97,7 @@ jobs:
97
runs-on: ubuntu-latest
98
steps:
99
- uses: actions/checkout@v2
100
+ - uses: linux/build-deps@v1
101
- name: Installs cargo-deadlinks
102
run: cargo install cargo-deadlinks
103
- name: Checks dead doc links
.github/workflows/linux/build-deps.yml
@@ -0,0 +1,6 @@
1
+runs:
2
+ using: "composite"
3
+ steps:
4
+ - name: Install alsa and udev
5
+ run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
6
+ if: runner.os == 'linux'
0 commit comments