Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[pre-commit.ci] pre-commit autoupdate #219

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #219

Workflow file for this run

name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: mypy
run: |
uv run mypy --install-types --non-interactive .
- name: pytest
if: always()
run: |
uv run pytest --cov=cs --cov-report= --durations=0
- name: codecov
uses: codecov/codecov-action@v5