feat: Adds ci
Some checks failed
CI / Run tests. (push) Failing after 31s

This commit is contained in:
2024-12-07 09:48:45 -05:00
parent 45ab7ca578
commit 6b670ce5c4
4 changed files with 40 additions and 0 deletions

8
docker/Dockerfile.test Normal file
View File

@@ -0,0 +1,8 @@
ARG SWIFT_IMAGE_VERSION="6.0"
FROM swift:${SWIFT_IMAGE_VERSION}
WORKDIR /app
COPY ./Package.* ./
RUN swift package resolve
COPY . .
RUN swift build
CMD ["/bin/bash", "-xc", "swift", "test"]