initial commit

This commit is contained in:
Hampus Kraft
2026-01-01 20:42:59 +00:00
commit 2f557eda8c
9029 changed files with 1490197 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
FROM golang:1.25.5
WORKDIR /workspace
COPY go.mod go.sum ./
RUN go mod download
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates coreutils && \
rm -rf /var/lib/apt/lists/*
COPY . .
RUN ls -la tests/integration/fixtures/ || echo "No fixtures found"
ENV CGO_ENABLED=0
# Pre-compile tests to fail early on build errors and speed up runtime
RUN go test -c -o integration.test -v ./tests/integration
CMD ["sh", "-c", "echo 'Starting integration tests...' && stdbuf -oL -eL ./integration.test -test.v -test.count=1 -test.timeout=0"]