From db20e5de74623dea50691f3946c776a0c68d0b49 Mon Sep 17 00:00:00 2001 From: Nader alanzi Date: Sat, 11 Apr 2026 20:15:05 +0300 Subject: [PATCH 1/2] Add Pylint workflow for Python code analysis --- .github/workflows/pylint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 0000000..c73e032 --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,23 @@ +name: Pylint + +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 '*.py') From 8ddf3cbd33911c584b769fb222f8a3ac48323aae Mon Sep 17 00:00:00 2001 From: Nader alanzi Date: Fri, 17 Apr 2026 07:21:06 +0300 Subject: [PATCH 2/2] Checkpoint from VS Code for cloud agent session --- .github/FUNDING.yml | 2 ++ .vscode/settings.json | 1 + 2 files changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 16c528c..b2a3131 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,3 @@ github: instructkr +paypal: instructkr +claude \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4ae8ef0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +u