diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index cb34265..edd9cd9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,13 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: astral-sh/ruff-action@v3 with: - python-version: "3.13" - cache: pip - - run: pip install ruff - - run: ruff check src/ - - run: ruff format --check src/ + args: check src/ + - uses: astral-sh/ruff-action@v3 + with: + args: format --check src/ build: runs-on: ubuntu-latest @@ -26,7 +25,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.13" - cache: pip - run: pip install -r requirements.txt - name: Verify imports run: python -c "from src.server import mcp; print('OK:', mcp.name)"