5 lines
113 B
Bash
Executable file
5 lines
113 B
Bash
Executable file
#!/bin/sh
|
|
set -euxo pipefail
|
|
python -m pytest
|
|
pre-commit run --all-files
|
|
python manage.py makemigrations --check
|