Switch to uv #601
Workflow file for this run
This file contains 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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
curl -LsSf https://astral.sh/uv/install.sh | sh | |
uv pip install --system -e '.[dev,docs,learning]' | |
# NumPy 2.0 is not available for Python 3.8 and older versions, which leads to broken tests | |
- name: Lint with Mypy (Python 3.8) | |
run: mypy crowdkit | |
if: matrix.python-version == '3.8' | |
- name: Lint with Mypy | |
run: mypy crowdkit tests | |
if: matrix.python-version != '3.8' | |
- name: Pre-Commit Check | |
uses: pre-commit/[email protected] | |
- name: Test with pytest | |
run: coverage run --source crowdkit -m pytest | |
- name: Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: codecov | |
if: matrix.python-version == '3.12' | |
- name: Run MkDocs | |
run: mkdocs build --strict | |
- name: Build wheel | |
run: | | |
python3 -m build --sdist --wheel . | |
twine check --strict dist/* | |
- name: Validate CITATION.cff | |
uses: citation-file-format/[email protected] | |
with: | |
args: "--validate" |