Drop skipped tests on deprecated methods #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit | |
| # SPDX-License-Identifier: MIT | |
| --- | |
| # yamllint disable rule:line-length | |
| name: codecov | |
| 'on': | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: codecov-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| codecov: | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install uv (from Astral) | |
| run: | | |
| curl -LsSf https://astral.sh/uv/0.7.13/install.sh | bash | |
| echo "$HOME/.cargo/bin" >> "$GITHUB_PATH" | |
| - name: Collect coverage | |
| run: make coverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true | |
| verbose: true |