more linter fixes

This commit is contained in:
2025-10-15 21:56:24 +02:00
parent d15dfb27e7
commit d9ed4dee10
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
name: build-and-test-gfn
name: build-and-test
on: [push]
jobs:
build:

View File

@@ -18,7 +18,7 @@ jobs:
go-version: 1.24.9
- name: Build the executables
run: ./mkrel.sh gfn ${{ github.ref_name}}
run: ./mkrel.sh epuppy ${{ github.ref_name}}
- name: List the executables
run: ls -l ./releases

View File

@@ -12,8 +12,8 @@ func TestEpub(t *testing.T) {
defer bk.Close()
}
func open(t *testing.T, f string) (*epub.Book, error) {
bk, err := epub.Open(f)
func open(t *testing.T, f string) (*Book, error) {
bk, err := Open(f)
if err != nil {
return nil, err
}