KeepassX format implementation in pure dart.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/bash |
|
|
|
|
|
set -xeu |
|
|
|
|
|
cd "${0%/*}"/.. |
|
|
|
|
|
|
|
|
pub get |
|
|
pub global activate test_coverage |
|
|
|
|
|
fail=false |
|
|
pub global run test_coverage || fail=true |
|
|
echo "fail=$fail" |
|
|
bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info |
|
|
|
|
|
test "$fail" == "true" && exit 1 |
|
|
|
|
|
echo "Success 🎉️" |
|
|
|
|
|
exit 0 |