10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
|
# To lint, install Earthly and run `earth +lint`
|
||
|
# This ensures the usage of the same version of golangci-lint
|
||
|
|
||
|
FROM golangci/golangci-lint:v1.31
|
||
|
|
||
|
WORKDIR /gpm
|
||
|
|
||
|
lint:
|
||
|
COPY . .
|
||
|
RUN golangci-lint run
|