9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/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
|
||
|
|