goext/.gitea/workflows/Dockerfile_tests
Mike Schwörer 14441c2378
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 57s
Adde gitea workflow: tests
2023-08-14 18:39:22 +02:00

10 lines
156 B
Plaintext

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