Skip to content

fix: increase max docker image size #2

fix: increase max docker image size

fix: increase max docker image size #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e .
- name: Verify module compiles
run: python -m py_compile cull.py
- name: Run unit tests
run: python -m unittest discover -s tests -v