Skip to content

uv, python 3.12, only ._.blob access, remove textblob-de #34

uv, python 3.12, only ._.blob access, remove textblob-de

uv, python 3.12, only ._.blob access, remove textblob-de #34

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pytest
on:
pull_request:
branches: [ main ]
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Test with pytest
run: |
uv run --python ${{ matrix.python-version }} --all-extras pytest