Skip to content

Commit

Permalink
Add libwebp installation to coverage.yml workflow
Browse files Browse the repository at this point in the history
The commit modifies the GitHub Actions workflow for code coverage testing. Specifically, it adds instructions to install libwebp to ensure necessary dependencies are met during the test coverage workflow execution. This prevents potential issues regarding missing libraries while running tests.
  • Loading branch information
ryanbekhen committed Jun 28, 2024
1 parent 0f0a7db commit 9bddd7f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
with:
go-version: 1.22

- name: Install libwebp
run: sudo apt-get install libwebp-dev

- name: Generate Test Coverage
run: go test ./... -coverprofile=./cover.out

Expand Down

0 comments on commit 9bddd7f

Please sign in to comment.