2021-09-01 15:52:16 +05:30
|
|
|
name: Linters
|
2021-04-16 21:44:49 +05:30
|
|
|
|
|
|
|
on:
|
2021-07-15 19:30:05 +05:30
|
|
|
pull_request: { }
|
|
|
|
|
2021-04-16 21:44:49 +05:30
|
|
|
jobs:
|
2021-09-01 15:52:16 +05:30
|
|
|
|
|
|
|
linters:
|
|
|
|
name: linters
|
2021-04-16 21:44:49 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-07-15 19:30:05 +05:30
|
|
|
- uses: actions/checkout@v2
|
2021-09-01 15:52:16 +05:30
|
|
|
|
|
|
|
- name: Set up Python 3.8
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
|
|
|
|
- name: Install and Run Pre-commit
|
|
|
|
uses: pre-commit/action@v2.0.3
|
2021-10-20 14:53:49 +05:30
|
|
|
|
2021-10-22 21:43:50 +05:30
|
|
|
- name: Download Semgrep rules
|
2021-10-22 22:38:44 +05:30
|
|
|
run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules
|
2021-10-22 21:43:50 +05:30
|
|
|
|
2021-10-20 14:53:49 +05:30
|
|
|
- uses: returntocorp/semgrep-action@v1
|
|
|
|
env:
|
|
|
|
SEMGREP_TIMEOUT: 120
|
|
|
|
with:
|
|
|
|
config: >-
|
|
|
|
r/python.lang.correctness
|
2021-10-22 21:43:50 +05:30
|
|
|
./frappe-semgrep-rules/rules
|