This is an automated email from the ASF dual-hosted git repository.

jin pushed a commit to branch cache-pip
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-ai.git

commit 9023788b798a45908d60b836dd425c99b638b47a
Author: imbajin <[email protected]>
AuthorDate: Mon Dec 23 22:08:09 2024 +0800

    chore: enable pip cache
---
 .github/workflows/pylint.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
index b864eb9..269ebf2 100644
--- a/.github/workflows/pylint.yml
+++ b/.github/workflows/pylint.yml
@@ -11,13 +11,16 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: ["3.9", "3.10"]
+        python-version: ["3.9", "3.10", "3.11"]
+
     steps:
     - uses: actions/checkout@v4
-    - name: Set up Python ${{ matrix.python-version }}
+    - name: Setup Python ${{ matrix.python-version }}
       uses: actions/setup-python@v3
       with:
         python-version: ${{ matrix.python-version }}
+        cache: 'pip'
+
     - name: Install dependencies
       run: |
         python -m pip install --upgrade pip

Reply via email to