mirror of
https://github.com/TheR1D/shell_gpt.git
synced 2026-07-03 14:10:18 +02:00
12134c2c95
* pyproject.toml * sdist and bdist specific files. * CONTRIBUITNG.md. * New linters and CI/CD. * Mypy stricted types. * Shell scripts to run linters and tests.
10 lines
133 B
Bash
10 lines
133 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy sgpt
|
|
ruff sgpt tests scripts
|
|
black sgpt tests --check
|
|
isort sgpt tests scripts --check-only
|