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
|
|
|
|
2022-06-28 13:46:12 +05:30
|
|
|
- name: Set up Python 3.10
|
2021-09-01 15:52:16 +05:30
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2022-06-28 13:46:12 +05:30
|
|
|
python-version: '3.10'
|
2021-09-01 15:52:16 +05:30
|
|
|
|
|
|
|
- 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
|
|
|
|
2022-06-28 13:46:12 +05:30
|
|
|
- name: Download semgrep
|
|
|
|
run: pip install semgrep==0.97.0
|
|
|
|
|
|
|
|
- name: Run Semgrep rules
|
|
|
|
run: semgrep ci --config ./frappe-semgrep-rules/rules --config r/python.lang.correctness
|