mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
29 lines
414 B
YAML
29 lines
414 B
YAML
stages:
|
|
- test
|
|
- build
|
|
|
|
|
|
unit:
|
|
stage: test
|
|
image: registry.gitlab.com/mbarkhau/pycalver/base
|
|
script:
|
|
- make lint
|
|
- make mypy
|
|
- make test
|
|
coverage: '/^(TOTAL|src).*?(\d+\%)$/'
|
|
artifacts:
|
|
paths:
|
|
- htmlcov/
|
|
allow_failure: false
|
|
|
|
|
|
pages:
|
|
stage: build
|
|
script:
|
|
- mkdir -p public/cov
|
|
- cp htmlcov/* public/cov/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|