aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
blob: 259415e799cf14d4c68419b1aa0c320bfea5a879 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

set -e

black --diff --check $(git ls-files '*.py')
mypy --strict $(git ls-files '*.py')
pylint $(git ls-files '*.py')