Initial commit - copied from GitLab

This commit is contained in:
os222
2025-05-24 22:13:16 +01:00
commit 4d6426c899
440 changed files with 15150 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
stages:
- compile
- test
compile:
stage: compile
script:
- scala .
test:
stage: test
script:
- scala test . # This will test everything. Will need to be modified as we add tests
# More stages will be added later to independently test different phases
# To allow chosen tests to run as we add functionality