forked from quic-go/quic-go
10 lines
206 B
Bash
Executable File
10 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ ${TESTMODE} == "unit" ]; then
|
|
cat quic-go.coverprofile > coverage.txt
|
|
cat */*.coverprofile >> coverage.txt
|
|
bash <(curl -s https://codecov.io/bash) -f coverage.txt
|
|
fi
|