Skip to content

Commit 3514580

Browse files
committed
👷 Validate configurations
1 parent 2271ed3 commit 3514580

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

‎scripts/coverage.sh‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
set -o pipefail
44

55
DIR="${1}"
6-
cd ${DIR}
6+
cd "${DIR}" || exit
7+
8+
# Validate the configurations.
9+
curl --data-binary @codecov.yaml https://codecov.io/validate
10+
711
dart pub global activate coverage
812
dart run coverage:test_with_coverage --port=9292
913
format_coverage --lcov --in=coverage --out=coverage.lcov --report-on=lib
10-

0 commit comments

Comments
 (0)