This commit is contained in:
Fabian Joswig 2025-10-11 10:18:30 +05:30 committed by GitHub
commit b307b90a8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: macos-latest
python-version: "3.12"
@ -32,15 +32,18 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: uv
uses: astral-sh/setup-uv@v5
- name: Install
run: |
sudo apt update
sudo apt install libhdf5-dev
uv pip install wheel --system
uv pip install . --system
uv pip install pytest pytest-cov pytest-benchmark hypothesis --system
uv pip freeze --system
- name: Run tests
run: pytest --cov=pyerrors -vv -Werror
run: pytest --cov=pyerrors -vv