We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c867aad commit 55fe28eCopy full SHA for 55fe28e
.github/workflows/go.yml
@@ -0,0 +1,14 @@
1
+name: Go test
2
+
3
+on:
4
+ push:
5
+ branches: ['main']
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: heussd/pdftotext-go@main
Dockerfile
@@ -0,0 +1,11 @@
+FROM golang:1.22.0-alpine3.18
+RUN apk add --no-cache --update poppler-utils
+WORKDIR /app
+COPY testdata ./testdata
+COPY go.* ./
+COPY *.go ./
+RUN go test -v
0 commit comments