summaryrefslogtreecommitdiffstats
path: root/.github/workflows/Lint.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/Lint.yaml')
-rw-r--r--.github/workflows/Lint.yaml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/Lint.yaml b/.github/workflows/Lint.yaml
deleted file mode 100644
index aae3e05..0000000
--- a/.github/workflows/Lint.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
-name: Python code review
-on: [push, pull_request]
-jobs:
- Test:
- runs-on: ubuntu-20.04
- strategy:
- fail-fast: false
- steps:
- - uses: actions/checkout@main
- - name: Set up Python
- uses: actions/setup-python@main
- with:
- python-version: 3.x
- - uses: actions/cache@main
- with:
- path: ~/.cache/pip
- key: ${{ runner.os }}-pip-lint
- restore-keys: |
- ${{ runner.os }}-pip-lint
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install flake8
- - name: Lint with flake8
- run: |
- python -m flake8 . --builtins=_,I --ignore=E501 --count --benchmark --show-source --statistics