diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml new file mode 100644 index 0000000..43295e7 --- /dev/null +++ b/.github/workflows/codeball.yml @@ -0,0 +1,19 @@ +name: Codeball +on: + pull_request: {} + pull_request_review_comment: + types: [created, edited] + +jobs: + codeball_job: + runs-on: ubuntu-latest + name: Codeball + steps: + - name: Codeball + uses: sturdy-dev/codeball-action@v2 + with: + # For all configuration options see https://github.com/sturdy-dev/codeball-action/blob/v2/action.yml + approvePullRequests: "true" + labelPullRequestsWhenApproved: "true" + labelPullRequestsWhenReviewNeeded: "false" + failJobsWhenReviewNeeded: "false" diff --git a/setup.py b/setup.py index d5552f2..8f31207 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ # Similar to `install_requires` above, these must be valid existing # projects. extras_require={ # Optional - 'dev': ['coverage', 'coveralls', 'mock', 'pylint', 'nose', 'pyinstaller'] + 'dev': ['coverage', 'coveralls', 'mock', 'pylint==2.15.10', 'nose', 'pyinstaller'] }, license="Mozilla Public License 2.0 (MPL 2.0)", keywords="py.test pytest opentmi report",