Skip to content

Commit

Permalink
fix: add libsoup lib for clippy action
Browse files Browse the repository at this point in the history
  • Loading branch information
kareemmahlees committed Dec 16, 2023
1 parent 75f360e commit 09dc2aa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "latest"
Expand Down Expand Up @@ -48,7 +48,10 @@ jobs:
with:
fetch-depth: 1
- name: Install required libraries
run: sudo apt-get install libgtk-3-dev
run: |
sudo apt-get update
sudo apt-get install libgtk-3-dev
sudo apt-get install libsoup2.4-dev
- uses: moonrepo/setup-rust@v1
with:
components: clippy
Expand Down

0 comments on commit 09dc2aa

Please sign in to comment.