Skip to content

Commit

Permalink
ci: Runt apt update before installing
Browse files Browse the repository at this point in the history
  • Loading branch information
bcyran committed Mar 2, 2024
1 parent c864a95 commit 7571d18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
profile: minimal
toolchain: stable
override: true
- run: sudo apt-get install -y libheif-dev libheif1
- run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends libheif-dev libheif1
- uses: actions-rs/cargo@v1
with:
command: test
Expand Down

0 comments on commit 7571d18

Please sign in to comment.