Skip to content

Implement autosave of backup and export functions #34

Implement autosave of backup and export functions

Implement autosave of backup and export functions #34

Workflow file for this run

name: Tests
on: push
jobs:
build:
name: Build and test pHroc
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install libegl1
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
pytest