Skip to content

Commit

Permalink
Install system dependencies for Rust workflow
Browse files Browse the repository at this point in the history
The Rust workflow started failing in #281 due to missing system-level
dependencies in the container that is running the tests.
  • Loading branch information
jdno committed Apr 9, 2024
1 parent abb52f0 commit 2bd594d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ jobs:
options: --security-opt seccomp=unconfined

steps:
- name: Install system dependencies
run: |
sudo apt-get update && sudo apt-get install -y pkg-config
- name: Checkout code
uses: actions/checkout@v4

Expand Down

0 comments on commit 2bd594d

Please sign in to comment.