build: bump pytest-cov from 4.1.0 to 7.0.0 #123
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
| name: code-style | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| code_style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install dependencies | |
| run: uv sync --locked --dev | |
| - name: Lint code with Ruff | |
| run: uv run ruff check . | |
| - name: Type cheking with MyPy | |
| run: uv run mypy codelimit/ |