WACC/.gitlab-ci.yml
2025-05-24 22:13:16 +01:00

17 lines
333 B
YAML

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