Adde gitea workflow: tests
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 57s

This commit is contained in:
2023-08-14 18:39:22 +02:00
parent f6bcdc9903
commit 14441c2378
8 changed files with 89 additions and 22 deletions

View File

@@ -0,0 +1,9 @@
FROM golang:latest
RUN apt install -y make curl python3 && go install gotest.tools/gotestsum@latest
COPY . /source
WORKDIR /source
CMD ["make", "test"]