forked from nanuchi/my-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Lint and Format Code | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/python/**' | ||
- '.github/workflows/lint.yml' | ||
|
||
jobs: | ||
lint-and-format: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install black pylint | ||
- name: Format code with Black | ||
run: black . | ||
|
||
- name: Run pylint | ||
id: lint | ||
continue-on-error: true | ||
run: pylint your_project_directory > pylint_report.txt | ||
|
||
- name: Send code rating to slack | ||
run: | | ||
RATING=$(grep -oP "Your code has been rated at \K[0-9\.]+/[0-9\.]+" pylint_report.txt) | ||
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"Your code rating of your recent push is: ${RATING}\"}" ${{ secrets.SLACK_WEBHOOK_URL }} | ||
- name: Check for critical pylint errors | ||
id: pylint_check | ||
run: | | ||
if grep -E "(syntax-error|fatal)" pylint_report.txt; then | ||
exit 1 | ||
fi | ||
- name: Send Slack notification on failure | ||
if: steps.pylint_check.outcome == 'failure' | ||
run: | | ||
ERROR_MSG=$(grep -E "(syntax-error|fatal)" pylint_report.txt) | ||
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"Critical linting errors found in the code. Please check the logs for details:\n\`\`\`$ERROR_MSG\`\`\`\"}" ${{ secrets.SLACK_WEBHOOK_URL }} |