Skip to content

Commit

Permalink
chore(ci): add libudev to install
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelvanderwaal committed Apr 4, 2022
1 parent 80debfb commit 4439c71
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- name: Setup
id: setup
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -21,6 +27,12 @@ jobs:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Setup
id: setup
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand All @@ -35,6 +47,12 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Setup
id: setup
shell: bash
run: |
echo "Installing libudev-dev"
sudo apt install libudev-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 4439c71

Please sign in to comment.