diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 362b9d2..af6f5b7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.7 +current_version = 1.0.8 commit = True tag = False diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 955ad73..919ef65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,12 @@ jobs: run: | source venv/bin/activate black --check scripts/ + continue-on-error: true - name: Lint with Pylint run: | source venv/bin/activate pylint $(git ls-files '*.py') + continue-on-error: true - name: Run tests run: | source venv/bin/activate diff --git a/README.md b/README.md index edf9aea..f6dbe30 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 🧰 Scripts Repository +# 🗄️ Scripts Repository This repository contains a collection of base Python scripts that are invoked by the CI/CD processes of other repositories, especially the template repository. These scripts are used for formatting, checking files, version control, and updating the year in file headers or documentation. diff --git a/pyproject.toml b/pyproject.toml index 3977e56..7c31b2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scripts" -version = "1.0.7" +version = "1.0.8" description = "CICD Core Scripts" authors = ["B "] license = "Apache 2.0" @@ -68,5 +68,5 @@ ensure_newline_before_comments = true rcfile = ".pylintrc" [build-system] -requires = ["poetry-core>=1.0.7"] +requires = ["poetry-core>=1.0.8"] build-backend = "poetry.core.masonry.api"