Added test container
All checks were successful
Test Rust / test (push) Successful in 1m17s

This commit is contained in:
AlexanderHD27
2025-06-09 21:36:57 +02:00
parent 2286ce4eec
commit bea5076295
2 changed files with 25 additions and 0 deletions

10
Dockerfile.test Normal file
View File

@@ -0,0 +1,10 @@
# Use the official Rust image as the base
FROM rust:latest
WORKDIR /tester
COPY . .
RUN cargo fetch
CMD ["cargo", "test"]