Mike Schwörer
14441c2378
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 57s
10 lines
156 B
Plaintext
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"]
|