aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3ddd5f18..370afb32 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -83,7 +83,9 @@ jobs:
83 run: | 83 run: |
84 eval $(luarocks path) 84 eval $(luarocks path)
85 luacov -c testrun/luacov.config 85 luacov -c testrun/luacov.config
86 ( cd testrun/ && bash <(curl -s https://codecov.io/bash) ) 86 curl -Os https://uploader.codecov.io/latest/$([ `uname -s` = "Linux" ] && echo "linux" || echo "macos")/codecov
87 chmod +x codecov
88 ( cd testrun/ && ../codecov )
87 grep "Summary" -B1 -A1000 testrun/luacov.report.out 89 grep "Summary" -B1 -A1000 testrun/luacov.report.out
88 90
89 ############################################################################## 91 ##############################################################################