Skip to content

Update dependencies #77

Update dependencies

Update dependencies #77

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.6'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: coverage run --branch --source=denoising_inpainting_lbp/ --omit=**/__init__.py -m pytest
- name: Show coverage report
run: coverage report
- name: Run linter
if: always()
run: pylint denoising_inpainting_lbp/
- name: Run type checker
if: always()
run: mypy denoising_inpainting_lbp/