7 lines
105 B
Bash
7 lines
105 B
Bash
#!/bin/sh
|
|
set -eu
|
|
python -m ruff check .
|
|
python -m ruff format --check .
|
|
python -m mypy
|
|
python -m pytest
|