16 lines
192 B
Bash
Executable File
16 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "building ui..."
|
|
./tools/build_ui.sh
|
|
|
|
echo "running unit tests..."
|
|
nosetests ./tests
|
|
|
|
echo "type checking..."
|
|
./tools/typecheck.sh
|
|
|
|
echo "linting..."
|
|
./tools/lint.sh
|