File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,15 +82,18 @@ jobs:
8282 run : |
8383 make coverage
8484
85- - name : Debug coverage outputs
85+ - name : 🔍 Show luacov-lcov reporter output
8686 run : |
87- echo "Listing files in $(pwd):"
88- find . -type f
89- echo "Check for luacov stats:"
90- find . -name "luacov.stats.out"
91- echo "Check for lcov.info:"
92- find . -name "lcov.info"``
87+ echo "Running luacov-lcov manually:"
88+ ls -l luacov.stats.out || echo "No stats file"
89+ luarocks list | grep luacov || echo "luacov not installed?"
90+ luacov -t LcovReporter > lcov.info 2> lcov.stderr.log || echo "luacov failed"
9391
92+ echo "Output file?"
93+ ls -l lcov.info || echo "lcov.info not generated"
94+
95+ echo "stderr from luacov:"
96+ cat lcov.stderr.log
9497 - name : Upload code coverage
9598 uses : codecov/codecov-action@v4
9699 with :
You can’t perform that action at this time.
0 commit comments