Files
lms/.github/workflows/linters.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: did not find expected '-' indicator
2024-05-13 10:31:09 +05:30

33 lines
759 B
YAML

name: Linters
on:
pull_request:
workflow_dispatch:
push:
branches: [ main, develop ]
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