diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7f6693d..5e03e40 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -37,11 +37,13 @@ jobs: python-version: '3.11' cache: 'pip' - - name: Install ruff - run: pip install ruff + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install ruff - name: Run ruff check - run: ruff check git_commit_ai/ || true + run: python -m ruff check git_commit_ai/ || true build: runs-on: ubuntu-latest