Skip to content

Test/missing image processing tests #9

Test/missing image processing tests

Test/missing image processing tests #9

Workflow file for this run

name: Unit Tests / Test Coverage / Pre-Commit Hooks
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
- closed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Dependencies
run: |
pip install -e .
pip install -r requirements.txt
pre-commit install
- name: Run Unit Tests
run: coverage run -m pytest -s tests
- name: Test Coverage
run: coverage report --fail-under=96
- name: Run Pre-Commit Hooks
run: pre-commit run --all-files