36 lines
790 B
YAML
36 lines
790 B
YAML
name: Linters
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ main, develop ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
linters:
|
|
name: Semantic Commits
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'pull_request'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Install and Run Pre-commit
|
|
uses: pre-commit/action@v2.0.3
|
|
|
|
- name: Download Semgrep rules
|
|
run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules
|
|
|
|
- name: Run Semgrep rules
|
|
run: |
|
|
pip install semgrep
|
|
semgrep ci --config ./frappe-semgrep-rules/rules --config r/python.lang.correctness
|