Skip to content

Update readme.md for --speak-utf-8 usage (#14) #7

Update readme.md for --speak-utf-8 usage (#14)

Update readme.md for --speak-utf-8 usage (#14) #7

Workflow file for this run

name: Go Test
on:
push:
# only trigger on branches, not on tags
branches: '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
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