Codecov qmake_gcc_cpp11_gcov Example
The goal of this project is to have a clean GitHub Actions CI build, with specs:
- C++ version:
C++11 - Build system:
qmake - C++ compiler:
g++ - Libraries:
STLonly - Code coverage:
gcov(note: it should show the code coverage is below 100%) - Source: multiple files
Add to your workflows file.
- name: Upload to Codecov (Action)
uses: codecov/codecov-action@v2
with:
token: {{ token }}or
- name: Upload to Codecov (Uploader)
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t {{ token }}#!/bin/bash
for filename in `find . | egrep '\.cpp'`;
do
gcov-5 -n -o . $filename > /dev/null;
doneRepository tokens are required for (a) all private repos, (b) public repos not using Travis-CI, CircleCI or AppVeyor. Find your repository token at Codecov and provide via appending -t <your upload token> to you where you upload reports.