9 lines
168 B
Bash
Executable file
9 lines
168 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# TODO: use yq to parse .gitlab-ci.yaml and auto run whatever the CI does
|
|
|
|
pytest . || exit 1
|
|
pylint twnet_parser/ || exit 1
|
|
mypy twnet_parser/ || exit 1
|
|
|