fix(selectionnodes): fixed unwrap data error #952 #1147
Workflow file for this run
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
on: [push] | |
name: Code Coverage | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: read | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install nightly toolchain | |
run: | | |
rustup install nightly | |
rustup override set nightly | |
- name: Install llvm-cov | |
run: cargo install cargo-llvm-cov | |
- name: Prepare llvm-tools | |
run: rustup component add llvm-tools-preview | |
- name: generage coverage data | |
env: | |
RUST_TEST_THREADS: 1 | |
CARGO_INCREMENTAL: "0" | |
run: cargo llvm-cov --lcov --output-path /tmp/coverage.info | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: /tmp/ |