ci: remove code coverage test & uniform file names (#811)

This commit is contained in:
SteveLauC
2024-05-24 09:02:05 +08:00
committed by GitHub
parent c4c0bd7383
commit 9eb1b4ac9f
12 changed files with 2 additions and 59 deletions

View File

@@ -1,57 +0,0 @@
name: Build and test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Set up Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Install grcov
uses: taiki-e/install-action@v2
with:
tool: grcov
- name: Add llvm-tools-preview
run: rustup component add llvm-tools-preview
- name: Build and test
run: |
cargo build --verbose
cargo test --verbose
env:
RUSTFLAGS: -Cinstrument-coverage
LLVM_PROFILE_FILE: "%p-%m.profraw"
- name: Generate lcov.info
run: |
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info
fail_ci_if_error: true

View File

@@ -1,4 +1,4 @@
name: Test Configuration File Creation
name: Check config file creation if not exists
on:
pull_request:

View File

@@ -3,7 +3,7 @@
# separate terms of service, privacy policy, and support
# documentation.
name: DevSkim
name: Check Security Vulnerability
on:
pull_request: