-
dilawar authored
copy the pyproject.toml to a safe place before updating the version string using pyproject.
1c37a1c3
.gitlab-ci.yml 426 B
image: python:3.8-slim-buster
stages:
- build
- test
- deploy
before_script:
- apt update && apt install -y make
build:
stage: build
tags:
- linux
script:
- make ci
test:
stage: test
tags:
- linux
script:
- python3 -m pip install .
- make test
deploy:
stage: deploy
tags:
- linux
script:
- python3 -m pip install poetry
- poetry install
- bash .ci/release.sh