update workflow #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
branches: [tantivy_0.21.1] | |
# Ensures that we cancel running jobs for the same PR / same workflow. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive # 添加此行以递归检出子模块 | |
- name: Update submodules # 添加此步骤以更新子模块 | |
run: | | |
git submodule sync --recursive | |
git submodule update --init --recursive | |
- name: Install Rust | |
run: rustup toolchain install nightly-2023-12-02 --profile minimal --component llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo +nightly-2023-12-02 llvm-cov --all-features --workspace --doctests --lcov --output-path lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
continue-on-error: true | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
slug: MochiXu/tantivy-search | |
files: lcov.info | |
fail_ci_if_error: true | |