9 lines
118 B
Bash
Executable File
9 lines
118 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
. /home/kaizen/.bashrc
|
|
set -e
|
|
cd /home/kaizen/repos/ChatMastermind
|
|
git pull
|
|
pre-commit run -a
|
|
pytest
|