From f055e51ad25b887bd43a5cad8f5f0174b2237e36 Mon Sep 17 00:00:00 2001 From: guanhuaw Date: Sat, 27 Jul 2024 22:11:02 -0700 Subject: [PATCH] updated ci --- .github/workflows/python-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index e8a646f..6d162bb 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -17,11 +17,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10" # Specify the Python version you need + cache: 'pip' # caching pip dependencies - name: Install dependencies run: | @@ -31,7 +32,7 @@ jobs: - name: Lint with Ruff run: | - ruff ./mirtorch + ruff check ./mirtorch - name: Test with pytest run: |