From 6b85fe0cd9d10513543524058056ae3dcc0dd354 Mon Sep 17 00:00:00 2001 From: ayahaustine Date: Fri, 6 Feb 2026 11:26:42 +0300 Subject: [PATCH] feat: prerelease --- .github/workflows/coverage.yml | 52 ---------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index d450c49..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Code Coverage - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - coverage: - name: Generate Code Coverage - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.13" - cache: "pip" - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -e ".[dev]" - pip install pytest-cov - - - name: Run tests with coverage - run: | - pytest --cov=app --cov-report=xml --cov-report=html --cov-report=term - - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 - with: - file: ./coverage.xml - flags: unittests - name: codecov-umbrella - fail_ci_if_error: false - - - name: Upload coverage artifacts - uses: actions/upload-artifact@v4 - with: - name: coverage-report - path: htmlcov/ - - - name: Coverage comment - uses: py-cov-action/python-coverage-comment-action@v3 - with: - GITHUB_TOKEN: ${{ github.token }} - MINIMUM_GREEN: 80 - MINIMUM_ORANGE: 60