initial commit
Code Quality Pipeline / code-quality (push) Failing after 1m49s
Test Python Package / test (push) Failing after 16s
Dependency Update Bot / update-check (push) Failing after 2m4s
Security Audit / safety (push) Failing after 1m26s

This commit is contained in:
Brian Bjarke Jensen
2025-08-31 17:50:04 +02:00
parent 56cad428b0
commit c789e33290
12 changed files with 1295 additions and 1 deletions
+32
View File
@@ -0,0 +1,32 @@
name: Test Python Package
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- name: Install uv
run: pip install uv
- name: Install dependencies
env:
UV_LINK_MODE: copy
run: uv sync
- name: Run pytest
env:
PYTHONPATH: .
run: uv run pytest