Compare commits

...

2 Commits

Author SHA1 Message Date
Jeffrey Paul 28d0d041b0 lint and check fmt on docker build 2024-06-14 05:47:35 -07:00
Jeffrey Paul 278cb73053 fmt 2024-06-14 05:47:29 -07:00
3 changed files with 42 additions and 1 deletions

39
Dockerfile Normal file
View File

@ -0,0 +1,39 @@
# First stage: Use the golangci-lint image to run the linter
FROM golangci/golangci-lint:latest as lint
# Set the Current Working Directory inside the container
WORKDIR /app
# Copy the go.mod file and the rest of the application code
COPY go.mod ./
COPY . .
# Run golangci-lint
RUN golangci-lint run
RUN sh -c 'test -z "$(gofmt -l .)"'
# Second stage: Use the official Golang image to run tests
FROM golang:1.22 as test
# Set the Current Working Directory inside the container
WORKDIR /app
# Copy the go.mod file and the rest of the application code
COPY go.mod ./
COPY . .
# Run tests
RUN go test -v ./...
# Final stage: Combine the linting and testing stages
FROM golang:1.22 as final
# Ensure that the linting stage succeeded
WORKDIR /app
COPY --from=lint /app .
COPY --from=test /app .
# Set the final CMD to something minimal since we only needed to verify lint and tests during build
CMD ["echo", "Build and tests passed successfully!"]

View File

@ -12,3 +12,6 @@ fmt:
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'
docker:
docker build --progress plain .

View File

@ -15,7 +15,6 @@ type Event struct {
Data json.RawMessage `json:"data"`
}
func NewEvent(level, message string, data json.RawMessage) Event {
return Event{
ID: uuid.New(),