Add uv lock file #341
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 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
- "3.14" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install uv" | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "0.4.26" | |
#enable-cache: true | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: "pyproject.toml" | |
- name: "Install the project" | |
run: uv sync --all-extras --dev | |
- name: "Install astra" | |
run: uv pip install -e . | |
- name: "Run tests" | |
env: | |
ASTRA_DATABASE_URL: ':memory:' | |
run: | | |
uv run pytest tests | |
- name: "Install Coveralls" | |
run: uv pip install coveralls | |
- name: Coveralls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
uv run coveralls --service=github |