Skip to content

Commit

Permalink
Issue 35.dockter.1 (#36)
Browse files Browse the repository at this point in the history
* #35 Added print pulls and branches

* #35 Added print pulls and branches

* #35 Added print pulls and branches

* #35 Clean up pylint issues

* #35 Clean up pylint issues

* #35 Clean up pylint issues
  • Loading branch information
docktermj authored May 17, 2022
1 parent ce2ac6d commit ad0a36a
Show file tree
Hide file tree
Showing 4 changed files with 272 additions and 97 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
20 changes: 20 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[pylint]
disable=
broad-except,
consider-iterating-dictionary,
consider-using-dict-items,
consider-using-f-string,
import-error,
line-too-long,
too-many-arguments,
too-many-branches,
too-many-lines,
too-many-locals,
too-many-return-statements,
too-many-statements,
unnecessary-dict-index-lookup,
unspecified-encoding,
good-names=
github-util
ignore=
__init__.py,
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.0] - 2022-05-17

### Added in 1.4.0

- New subcommands
- `print-branches`
- `print-pull-requests`
- Test to see if Dockerfile changes before creating Pull Request

## [1.3.0] - 2021-12-09

### Added in 1.3.0
Expand Down
Loading

0 comments on commit ad0a36a

Please sign in to comment.