diff options
author | Roger Gonzalez <roger@rogs.me> | 2024-03-03 18:04:01 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2024-03-03 18:04:01 -0300 |
commit | 6ff7c9750a9641a291b380c6b3a492417a05a186 (patch) | |
tree | 1d1f0e65de557aebb51730c3d1bbf127627f1cdf /.gitlab-ci.yml | |
parent | 5faf99bc3a0c4064017db62b7d8e33f7b9a4feb9 (diff) |
Fixed typo
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..350b74e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +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 |