Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
698 B
YAML
31 lines
698 B
YAML
name: Linters
|
|
|
|
on:
|
|
pull_request: { }
|
|
|
|
jobs:
|
|
|
|
linters:
|
|
name: Frappe Linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- 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
|
|
|
|
- uses: returntocorp/semgrep-action@v1
|
|
env:
|
|
SEMGREP_TIMEOUT: 120
|
|
with:
|
|
config: >-
|
|
r/python.lang.correctness
|
|
./frappe-semgrep-rules/rules
|