diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c8b9e5dc..3fabc3d6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,7 +3,7 @@ name: Lint on: [push] jobs: - build: + flake8: runs-on: macos-latest steps: - uses: actions/checkout@v3 @@ -15,6 +15,6 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 - - name: Analysing the code with pylint + - name: Analysing the code with flake8 run: | flake8 diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..6deafc26 --- /dev/null +++ b/tox.ini @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120