Skip to content

Bump version: 0.1.13 → 0.1.14 #26

Bump version: 0.1.13 → 0.1.14

Bump version: 0.1.13 → 0.1.14 #26

Workflow file for this run

name: Python Tests
on:
push:
branches:
- main
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies for Qt
run: |
sudo apt-get update
sudo apt-get install -y libegl1 libgl1 libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-xfixes0 libxcb-xinerama0
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # Choose your desired Python version
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest -s # Run pytest with output