Skip to content

common: add CODECOV token to workflow file #2

common: add CODECOV token to workflow file

common: add CODECOV token to workflow file #2

Workflow file for this run

# Measure code coverage and report it to codecov.io
name: Coverage
on:
workflow_call:
env:
# Note: All coverage scans, e.g. on pull requests, should be run in the same
# environment.
GITHUB_REPO: pmem/pmdk
DOCKER_REPO: ghcr.io/pmem/pmdk
HOST_WORKDIR: /home/runner/work/pmdk/pmdk
WORKDIR: utils/docker
PMDK_CC: gcc
PMDK_CXX: g++
MAKE_PKG: 0
SRC_CHECKERS: 0
OS: ubuntu
OS_VER: 22.04
COVERAGE: 1
TEST_BUILD: debug
FAULT_INJECTION: 1
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v4
- name: Pull the image
run: cd $WORKDIR && ./pull-or-rebuild-image.sh
- name: Build CI
run: cd $WORKDIR && ./build-CI.sh
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4

Check failure on line 40 in .github/workflows/scan_coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/scan_coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
with:
gcov: true
root_dir: /home/runner/work/pmdk/pmdk/
directory: /home/runner/work/pmdk/pmdk/
verbose: true