summaryrefslogtreecommitdiff
path: root/gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab-ci.yml')
-rw-r--r--gitlab-ci.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/gitlab-ci.yml b/gitlab-ci.yml
deleted file mode 100644
index 350b74e..0000000
--- a/gitlab-ci.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-image: python:latest
-
-lint:
- stage: test
- before_script:
- - pip install poetry
- - poetry install --no-root
- script:
- - poetry run ruff check ./src
- - poetry run ruff format --check ./src
-
-deploy_to_pypi:
- stage: deploy
- only:
- - master
- before_script:
- - pip install poetry
- - poetry install --no-root
- script:
- - POETRY_PYPI_TOKEN_PYPI=$PYPI_PASSWORD poetry publish --build