diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-13 21:01:55 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-13 21:01:55 +0200 |
commit | b12c97653c2ee004292b0fdfd770a2c59451854b (patch) | |
tree | 558d86421b118290ab68743785fd84e6208b17cd /.github | |
parent | 30ee34f106c5052cf0a60361d3220427b5753557 (diff) |
Linting rest of the files and adding pylint to GHA.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/auto.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/auto.yml b/.github/workflows/auto.yml index b360e1c..daa060d 100644 --- a/.github/workflows/auto.yml +++ b/.github/workflows/auto.yml @@ -46,4 +46,7 @@ jobs: uses: codecov/codecov-action@v3 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - + + # pylint + - name: Run pylint against the code + run: poetry run python3 -m pylint -v . |