diff --git a/.woodpecker/build-container.yml b/.woodpecker/build-container.yml index 9537803..a2b3022 100644 --- a/.woodpecker/build-container.yml +++ b/.woodpecker/build-container.yml @@ -9,7 +9,7 @@ steps: build: image: docker.io/library/python:3.12 commands: - - git fetch -tq + - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq - poetry build diff --git a/.woodpecker/build-package.yml b/.woodpecker/build-package.yml index 7dd59c7..557cbbf 100644 --- a/.woodpecker/build-package.yml +++ b/.woodpecker/build-package.yml @@ -9,7 +9,7 @@ steps: build: image: docker.io/library/python:3.12 commands: - - git fetch -tq + - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq - poetry build @@ -48,7 +48,7 @@ steps: - source: pypi_username target: POETRY_HTTP_BASIC_PYPI_USERNAME commands: - - git fetch -tq + - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq - poetry publish -n when: diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml index afac23d..76d46a0 100644 --- a/.woodpecker/lint.yml +++ b/.woodpecker/lint.yml @@ -9,7 +9,7 @@ steps: check-format: image: docker.io/library/python:3.12 commands: - - git fetch -tq + - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq - poetry install - poetry run yapf -dr ./${CI_REPO_NAME//-/} @@ -19,7 +19,7 @@ steps: check-coding: image: docker.io/library/python:3.12 commands: - - git fetch -tq + - git fetch --depth=2147483647 - pip install poetry poetry-dynamic-versioning -qq - poetry install - poetry run ruff ./${CI_REPO_NAME//-/} diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 0f17e2d..d245dfb 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -17,7 +17,7 @@ steps: fetch: image: docker.io/library/python:3.12 commands: - - git fetch -tq + - git fetch --depth=2147483647 pytest: image: ${PYTHON_VERSION}