Skip to content

Lupl/sparqlwrapper type awareness #17

Lupl/sparqlwrapper type awareness

Lupl/sparqlwrapper type awareness #17

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.26"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: uv sync --no-group examples
- name: Run tests
run: uv run pytest tests
- name: Run pyest-cov
run: |
uv run pytest --cov rdfproxy/ --cov-report xml
- name: Upload coverage data to coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}