From d9ed4dee102374cc63e1492c241b8b89df28049a Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 15 Oct 2025 21:56:24 +0200 Subject: [PATCH] more linter fixes --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- pkg/epub/epub_test.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a0ae536..15f5db0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -name: build-and-test-gfn +name: build-and-test on: [push] jobs: build: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2cd9ef5..234fbb3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/pkg/epub/epub_test.go b/pkg/epub/epub_test.go index 8830e4e..6fb2e6b 100644 --- a/pkg/epub/epub_test.go +++ b/pkg/epub/epub_test.go @@ -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 }