Skip to content

Commit

Permalink
install calibre in path
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Oct 12, 2024
1 parent 8fadfbc commit 62119f3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,15 @@ jobs:
with:
go-version: '1.22'

- name: Install Calibre
run: |
sudo apt-get update
sudo apt-get install -y calibre
- name: Ensure ebook-convert is in PATH
run: |
echo "$(dirname $(which ebook-convert)) is in PATH"
ebook-convert --version # This will fail if ebook-convert is not installed correctly
- name: Run Go tests
run: go test ./... -p 1 -count=1

0 comments on commit 62119f3

Please sign in to comment.