diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-13 21:35:13 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-13 21:35:13 +0100 |
| commit | 863ff1367e914e5e45ec866feb2ff9babfc51a98 (patch) | |
| tree | 3ed4a66893879d5f957ecc357bbfdc869aeef659 /.github | |
| parent | 1aad3e2aa11cd56fc12d0e1e5d398921d7cef911 (diff) | |
[CHORE] Update the NeSystem architecture.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/updater-pylint.yml | 23 |
1 files changed, 23 insertions, 0 deletions
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 |
