-
Notifications
You must be signed in to change notification settings - Fork 49
77 lines (68 loc) · 2.66 KB
/
python-linter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Linter
on:
pull_request:
push:
branches: ["master", "main"]
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8 for critical errors
run: |
# Fail the build for the following critical errors:
# E9** syntax, io, or indentation error
# F63* syntax error in assertion, comparison, or print
# F7** syntax error in loops or functions
# F82* undefined variables
# Currently still excluding some files in Informatics that import from rdkit!
flake8 molSimplify --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=fragment_classes.py,frag_functionalizer.py,bridge_functionalizer.py
- name: Run full flake8 linter
run: |
# Will never fail the build because of the --exit-zero flag but gives a report of the "code quality"
flake8 molSimplify --count --statistics --max-complexity 15 --max-line-length=127 --exit-zero
- name: Report Status
# Slack notifications only on the main repo
if: ${{ github.event_name != 'pull_request' && github.repository == 'hjkgrp/molSimplify' && job.status == 'failure'}}
#uses: ravsamhq/notify-slack-action@v1
uses: 8398a7/action-slack@v3
with:
fields: message,commit,author,workflow,job,took
status: ${{ job.status }}
env:
SLACK_WEBHOOK_URL: ${{secrets.SLACK_WEBHOOK}}
MATRIX_CONTEXT: ${{ toJson(matrix) }} # required
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy types-setuptools types-PyYAML types-requests types-tensorflow types-beautifulsoup4 pandas-stubs PyQt5-stubs
- name: Typecheck with mypy
run: |
mypy --ignore-missing-imports molSimplify
- name: Report Status
# Slack notifications only on the main repo
if: ${{ github.event_name != 'pull_request' && github.repository == 'hjkgrp/molSimplify' && job.status == 'failure'}}
#uses: ravsamhq/notify-slack-action@v1
uses: 8398a7/action-slack@v3
with:
fields: message,commit,author,workflow,job,took
status: ${{ job.status }}
env:
SLACK_WEBHOOK_URL: ${{secrets.SLACK_WEBHOOK}}
MATRIX_CONTEXT: ${{ toJson(matrix) }} # required