17 lines
333 B
YAML
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
|