Skip to content

Commit

Permalink
Added required Ubuntu dependencies to testing flow
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmcquilkin committed Jan 23, 2024
1 parent 1c27805 commit 6841a64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable

- name: Install dependencies (Ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libdbus-1-dev pkg-config
- name: Run test suite
working-directory: ./
run: cargo test

0 comments on commit 6841a64

Please sign in to comment.