12 lines
271 B
YAML
12 lines
271 B
YAML
build-job:
|
|
stage: build
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
|
|
run_tests:
|
|
stage: test
|
|
before_script:
|
|
- source /home/gitlab-runner/miniconda3/bin/activate cristallina
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
- pytest -v |