mirror of
https://github.com/ankitects/anki.git
synced 2026-01-20 01:39:00 -05:00
15 lines
192 B
Bash
Executable file
15 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
|