Skip to content

Fix handling of empty image list #146

Fix handling of empty image list

Fix handling of empty image list #146

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
CI:
name: Launching CI
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install requirements
run: poetry install --with dev --no-interaction
- name: Run Pytest
run: poetry run pytest