Skip to content

Commit

Permalink
Merge branch 'main' into write-endline
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele-Tentoni authored Apr 21, 2022
2 parents 9948042 + 667af39 commit 46de8a6
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/test.yml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
git init
- name: Publish 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
uses: JamesIves/github-pages-deploy-action@v4.3.0
with:
branch: gh-pages
folder: cov_html
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/test.yml') }}
Expand All @@ -55,7 +55,7 @@ jobs:

- name: Archive code coverage results
if: matrix.os == 'ubuntu-latest' && matrix.python == '3.10'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!--next-version-placeholder-->

## v0.1.12 (2022-03-02)
### Fix
* Report not executable bash program error ([`d3e7350`](https://github.com/Daniele-Tentoni/cc-codechecker/commit/d3e7350ae95f92ba51d59a7cf2c5ed20b80480c6))

## v0.1.11 (2022-02-23)
### Fix
* Move yaml read outside get_configuration function ([`54b8f1d`](https://github.com/Daniele-Tentoni/cc-codechecker/commit/54b8f1de0e679ec1d2d5a37babbdad7366dff966))
Expand Down
2 changes: 1 addition & 1 deletion cc_codechecker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""Coding Challenge Code Checker"""
from .codechecker import main

__version__ = "0.1.11"
__version__ = "0.1.12"
46 changes: 25 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cc-codechecker"
version = "0.1.11"
version = "0.1.12"
description = "Facilities to manage coding challenges."
authors = ["Daniele Tentoni <[email protected]>"]
keywords = ['coding', 'challenge', 'yaml', 'project', 'facilities']
Expand All @@ -20,7 +20,7 @@ python-semantic-release = "^7.24.0"
bandit = "^1.7.1"
coverage = {extras = ["toml"], version = "^6.3.1"}
isort = "^5.10.1"
mypy = "^0.931"
mypy = "^0.942"
pre-commit = "^2.16.0"
pydocstyle = "^6.1.1"
pylint = "^2.12.2"
Expand Down

0 comments on commit 46de8a6

Please sign in to comment.