Skip to content

prep new release + clean up & minor changes #71

prep new release + clean up & minor changes

prep new release + clean up & minor changes #71

Workflow file for this run

name: Python Integration Tests
on:
push:
branches: "main"
pull_request:
branches: "main"
workflow_call:
inputs:
branch:
required: false
type: string
default: "main"
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
cd crates/imgddpy/
pip install .[test]
- name: Run tests
run: |
cd crates/imgddpy/
pytest