Skip to content

Debug pp 1.14

Debug pp 1.14 #27

Workflow file for this run

name: PR
on:
pull_request:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Install Ubuntu packages
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt update
sudo apt -y install maven python3.9 python3.9-dev python3.9-venv
- name: Checkout sources
uses: actions/checkout@v4
- name: Install UV
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: uv sync --all-extras
- name: Run tests
run: uv run pytest