goext/.gitea/workflows/Dockerfile_tests

10 lines
156 B
Plaintext
Raw Normal View History

2023-08-14 18:39:22 +02:00
FROM golang:latest
RUN apt install -y make curl python3 && go install gotest.tools/gotestsum@latest
COPY . /source
WORKDIR /source
CMD ["make", "test"]