summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-07-25 14:12:10 (GMT)
committerThomas Haller <thaller@redhat.com>2023-07-25 14:12:10 (GMT)
commit35a68109ac9217e6d378d0cdc7d8bd9760203635 (patch)
treed0d59983e5e2064e0168cdc2ba60ec203d4360fc
parent9a2664056f8a30593f449cecc0c2dce1120c75f1 (diff)
downloadlibnl-35a68109ac9217e6d378d0cdc7d8bd9760203635.zip
libnl-35a68109ac9217e6d378d0cdc7d8bd9760203635.tar.gz
libnl-35a68109ac9217e6d378d0cdc7d8bd9760203635.tar.bz2
github: update flake8 linter to not explicitly select checks
Instead rely on the "flake8" file.
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fb71c30..6dae08e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -57,7 +57,7 @@ jobs:
if: ${{ matrix.cc == 'gcc' }}
run: |
python3 -m pip install flake8
- flake8 . --count --select=E703,E9,F63,F7,F82,Y --show-source --statistics
+ flake8 . --count --show-source --statistics
- name: Code formatting with Python black
if: ${{ matrix.cc == 'gcc' }}