Skip to content

Bump mypy from 1.13.0 to 1.14.1 #294

Bump mypy from 1.13.0 to 1.14.1

Bump mypy from 1.13.0 to 1.14.1 #294

Workflow file for this run

name: Run tests
on:
push:
jobs:
rufftest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: 'requirements-ruff.txt'
- run: make ruffinstall
- run: make rufftest
env:
RUFF_FORMAT: github
typingtest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: make devinstall
- run: make typingtest
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: |
sudo apt-get update
sudo apt-get install libimage-exiftool-perl
- run: make devinstall
- run: make unittests