915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
28 lines
555 B
YAML
28 lines
555 B
YAML
name: Linters
|
|
|
|
on:
|
|
pull_request: { }
|
|
|
|
jobs:
|
|
|
|
linters:
|
|
name: linters
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: returntocorp/semgrep-action@v1
|
|
env:
|
|
SEMGREP_TIMEOUT: 120
|
|
with:
|
|
config: >-
|
|
r/python.lang.correctness
|
|
.github/helper/semgrep_rules
|
|
|
|
- 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
|