9 lines
78 B
Bash
9 lines
78 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy app
|
|
ruff app
|
|
ruff format app --check
|