From 42adc0a5ec71de3ec1c8cf6adbea6379635738c1 Mon Sep 17 00:00:00 2001 From: ameerabuhadwan94-tech <229454431+ameerabuhadwan94-tech@users.noreply.github.com> Date: Fri, 17 Jul 2026 15:33:12 +0300 Subject: [PATCH 1/2] @ameerabuhadwan94-tech --- .github/workflows/ci.yml | 2 +- javascript/cache.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4f713a..fc0d2cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ name: CI Tests - +ameerabuhadwan94-tech "ON": on: push: branches: diff --git a/javascript/cache.js b/javascript/cache.js index e8e6137..31ea28c 100644 --- a/javascript/cache.js +++ b/javascript/cache.js @@ -1,6 +1,6 @@ /** * @license - * Copyright 2025 Google LLC + * Copyright 2026 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 3b8af266d449746e0a9a5cad9364091473b5cfe1 Mon Sep 17 00:00:00 2001 From: ameerabuhadwan94-tech <229454431+ameerabuhadwan94-tech@users.noreply.github.com> Date: Thu, 23 Jul 2026 09:05:13 +0300 Subject: [PATCH 2/2] Fix Pylint workflow syntax and concurrency setting --- .github/workflows/pylint.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..2114b7d --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,22 @@ +name: Pylintconcurrency:true, +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')