Skip to content

Bump version: 0.0.6 → 0.0.7 #22

Bump version: 0.0.6 → 0.0.7

Bump version: 0.0.6 → 0.0.7 #22

Workflow file for this run

name: Python Tests
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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