chore!: replace poetry with uv #1987
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, pull_request] | |
jobs: | |
Linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get full python version | |
id: full-python-version | |
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Install dependencies | |
run: uv sync | |
- name: Linting | |
run: uvx pre-commit run --all-files | |
Tests: | |
needs: Linting | |
name: ${{ matrix.os }} / ${{ matrix.python-version }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.11', '3.12'] | |
services: | |
rdf4j: | |
# Docker Hub image | |
image: eclipse/rdf4j-workbench:4.3.13 | |
ports: | |
- 8080:8080 | |
runs-on: ${{ matrix.os }} | |
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 uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Get full python version | |
id: full-python-version | |
shell: bash | |
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") | |
- name: Install dependencies | |
run: uvx sync | |
- name: Static type checking | |
uses: jakebailey/pyright-action@v2.3.2 | |
with: | |
version: 1.1.367 | |
continue-on-error: true | |
- name: Run pytest | |
if: ${{ ( runner.os != 'Linux' ) || ( matrix.python-version != '3.10' ) }} | |
run: poetry run pytest -q tests | |
- name: Run pytest with coverage | |
if: ${{ ( runner.os == 'Linux' ) && ( matrix.python-version == '3.10' ) }} | |
run: uv run pytest -q --cov=cimsparql --cov-report=xml tests | |
- name: Upload coverage | |
if: ${{ ( runner.os == 'Linux' ) && ( matrix.python-version == '3.10' ) }} | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
fail_ci_if_error: true |