diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f5d774c..5024560 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,11 +14,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -e ".[dev]" - - name: Run tests - run: pytest tests/ -v - - name: Check coverage - run: pytest tests/ --cov=src --cov-report=term-missing + - run: pip install -e ".[dev]" + - run: pytest tests/ -v + - run: ruff check .