13 lines
272 B
YAML
13 lines
272 B
YAML
build-job:
|
|
stage: build
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
|
|
run_tests:
|
|
stage: test
|
|
before_script:
|
|
- conda activate cristallina
|
|
- pip install -e cristallina
|
|
script:
|
|
- echo "Hello, $GITLAB_USER_LOGIN!"
|
|
- pytest -v |