From ed2ca91da628a6c3badbe32730133a2fb6924ad1 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 20 Mar 2023 21:33:51 +0100 Subject: [PATCH] Add pylint & shellcheck --- pylint.yml | 25 +++++++++++++++++++++++++ shellcheck.yml | 14 ++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 pylint.yml create mode 100644 shellcheck.yml diff --git a/pylint.yml b/pylint.yml new file mode 100644 index 0000000..10ac6b2 --- /dev/null +++ b/pylint.yml @@ -0,0 +1,25 @@ +name: Pylint +on: [push] +jobs: + pylint: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up Python 3.11 + run: | + apt update + apt install -y python3 python3-pip + - name: Pip version + run: pip --version + - name: Install dependencies + run: | + python3 -m pip install --upgrade pip + pip install pylint + pip install pylint-fail-under + - name: Analysing the code with pylint + run: | + find . -name '*.py' -exec pylint {} \; + - name: Analyse code + run: | + for file in $(find -name '*.py'); do pylint "$file" --fail-under=7.0; done diff --git a/shellcheck.yml b/shellcheck.yml new file mode 100644 index 0000000..996e08f --- /dev/null +++ b/shellcheck.yml @@ -0,0 +1,14 @@ +name: Shellcheck +on: [push] +jobs: + shellcheck: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up shellcheck + run: | + apt update + apt install -y shellcheck + - name: Analysing the code with shellcheck + run: find . -name '*.sh' -exec shellcheck {} \;