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
|
|
|
|
- uses: returntocorp/semgrep-action@v1
|
|
|
|
env:
|
|
|
|
SEMGREP_TIMEOUT: 120
|
|
|
|
with:
|
|
|
|
config: >-
|
|
|
|
r/python.lang.correctness
|
|
|
|
.github/helper/semgrep_rules
|
2021-09-01 10:22:16 +00:00
|
|
|
|
|
|
|
- name: Set up Python 3.8
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
|
|
|
|
- name: Install and Run Pre-commit
|
|
|
|
uses: pre-commit/action@v2.0.3
|