2021-09-01 10:22:16 +00:00
|
|
|
name: Linters
|
2021-04-16 16:14:49 +00:00
|
|
|
|
|
|
|
on:
|
2021-07-15 14:00:05 +00:00
|
|
|
pull_request: { }
|
|
|
|
|
2021-04-16 16:14:49 +00:00
|
|
|
jobs:
|
2021-09-01 10:22:16 +00:00
|
|
|
|
|
|
|
linters:
|
|
|
|
name: linters
|
2021-04-16 16:14:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-07-15 14:00:05 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-09-01 10:22:16 +00:00
|
|
|
|
2022-06-28 08:16:12 +00:00
|
|
|
- name: Set up Python 3.10
|
2021-09-01 10:22:16 +00:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2022-06-28 08:16:12 +00:00
|
|
|
python-version: '3.10'
|
2021-09-01 10:22:16 +00:00
|
|
|
|
|
|
|
- name: Install and Run Pre-commit
|
2021-09-02 11:14:59 +00:00
|
|
|
uses: pre-commit/action@v2.0.3
|
2021-10-20 09:23:49 +00:00
|
|
|
|
2021-10-22 16:13:50 +00:00
|
|
|
- name: Download Semgrep rules
|
2021-10-22 17:08:44 +00:00
|
|
|
run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules
|
2021-10-22 16:13:50 +00:00
|
|
|
|
2022-06-28 08:16:12 +00:00
|
|
|
- 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
|