Merge pull request #17 from GrepTimeTeam/ci-code-coverage

ci: Add code coverage for pull requests
This commit is contained in:
evenyag
2022-05-06 16:45:07 +08:00
committed by GitHub
3 changed files with 43 additions and 0 deletions

3
.github/actions-rs/grcov.yml vendored Normal file
View File

@@ -0,0 +1,3 @@
ignore-not-existing: true
output-type: lcov
output-path: ./lcov.info

37
.github/workflows/coverage.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
on: pull_request
name: Code coverage
env:
RUST_TOOLCHAIN: nightly-2022-04-03
jobs:
grcov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
override: true
profile: minimal
- name: Execute tests
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests"
- name: Gather coverage data
id: coverage
uses: actions-rs/grcov@v0.1
- name: Codecov upload
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./lcov.info
flags: rust
fail_ci_if_error: true
verbose: true

View File

@@ -1,2 +1,5 @@
# GreptimeDB
[![codecov](https://codecov.io/gh/GrepTimeTeam/greptimedb/branch/develop/graph/badge.svg?token=FITFDI3J3C)](https://codecov.io/gh/GrepTimeTeam/greptimedb)
GreptimeDB: the next-generation hybrid timeseries/analytics processing database in the cloud.