aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pylint.yml
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-01-24 19:15:23 -0600
committerChristian Cleberg <hello@cleberg.net>2024-01-24 19:15:23 -0600
commit9649744ef1badba51500c6a9feae09026c9c3ae5 (patch)
treeee008c5949fe8bcb4ca31c62b4f487e4441ab20f /.github/workflows/pylint.yml
parentdb4b26ef23710e186f6e11e95751fdc1d95b7ed6 (diff)
downloadomaha-incidents-9649744ef1badba51500c6a9feae09026c9c3ae5.tar.gz
omaha-incidents-9649744ef1badba51500c6a9feae09026c9c3ae5.tar.bz2
omaha-incidents-9649744ef1badba51500c6a9feae09026c9c3ae5.zip
remove pylint action
Diffstat (limited to '.github/workflows/pylint.yml')
-rw-r--r--.github/workflows/pylint.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
deleted file mode 100644
index 383e65c..0000000
--- a/.github/workflows/pylint.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: Pylint
-
-on: [push]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- python-version: ["3.8", "3.9", "3.10"]
- steps:
- - uses: actions/checkout@v3
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v3
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install pylint
- - name: Analysing the code with pylint
- run: |
- pylint $(git ls-files '*.py')