feat: Adds Docker tests.

This commit is contained in:
2025-03-13 09:22:14 -04:00
parent c23e4c5f61
commit 491663969e
6 changed files with 41 additions and 3 deletions

8
justfile Normal file
View File

@@ -0,0 +1,8 @@
docker_image := "swift-manual-s"
docker_tag := "latest"
build-docker:
@docker build -t {{docker_image}}:{{docker_tag}} .
test-docker: build-docker
@docker run --rm -i {{docker_image}}:{{docker_tag}} swift test