diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml deleted file mode 100644 index eb67dbe..0000000 --- a/.woodpecker/lint.yml +++ /dev/null @@ -1,16 +0,0 @@ -pipeline: - lint_ruff: - image: python - commands: - - pip install ruff - - python --version && poetry --version && ruff --version - - echo "----------------- running ruff lint ------------------" - - ruff check . - - lint_black: - image: python - commands: - - pip install black - - python --version && poetry --version && black --version - - echo "----------------- running black lint ----------------" - - black --check . diff --git a/.woodpecker/static_analysis.yml b/.woodpecker/static_analysis.yml deleted file mode 100644 index 786af22..0000000 --- a/.woodpecker/static_analysis.yml +++ /dev/null @@ -1,9 +0,0 @@ -pipeline: - pyright: - image: nikolaik/python-nodejs - commands: - - npm install --global pyright - - poetry install - - python --version && poetry --version && pyright --version - - echo "------------- running pyright typecheck -------------" - - poetry run pyright diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml deleted file mode 100644 index 44e264d..0000000 --- a/.woodpecker/test.yml +++ /dev/null @@ -1,10 +0,0 @@ -branches: master - -pipeline: - pytest: - image: ghcr.io/withlogicco/poetry:1.5.1 - commands: - - poetry install - - python --version && poetry --version - - echo "------------- running pytest -------------" - - poetry run pytest