From 863ff1367e914e5e45ec866feb2ff9babfc51a98 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 13 Mar 2026 21:35:13 +0100 Subject: [CHORE] Update the NeSystem architecture. Signed-off-by: Amlal El Mahrouss --- .github/workflows/updater-pylint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/updater-pylint.yml (limited to '.github/workflows') diff --git a/.github/workflows/updater-pylint.yml b/.github/workflows/updater-pylint.yml new file mode 100644 index 0000000..e967e09 --- /dev/null +++ b/.github/workflows/updater-pylint.yml @@ -0,0 +1,23 @@ +name: Pylint for Updater (API) + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v4 + - 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 'updater/*.py') \ No newline at end of file -- cgit v1.2.3