12 lines
154 B
Bash
Executable file
12 lines
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "> Running isort"
|
|
isort -rc -c actioner/
|
|
|
|
echo "> Running mypy"
|
|
mypy actioner/
|
|
|
|
echo "> Running flake8"
|
|
flake8 actioner
|