Improve error reporting on full moon errors #970
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
name: Code Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: llvm-tools-preview | |
# - name: Install grcov | |
# run: curl -L https://github.com/mozilla/grcov/releases/latest/download/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - | |
# - name: Run tests | |
# run: cargo test | |
# env: | |
# RUSTFLAGS: "-Zinstrument-coverage" | |
# LLVM_PROFILE_FILE: "report-%p-%m.profraw" | |
# - name: Run grcov | |
# run: ./grcov $(find . -name "report-*.profraw" -print) -s . --binary-path ./target/debug/ -t lcov --branch --ignore-not-existing --ignore "src/cli/*" -o coverage.lcov | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Generate code coverage | |
run: cargo llvm-cov --ignore-filename-regex "src/cli/*" --lcov --output-path lcov.info | |
- name: Upload | |
uses: codecov/codecov-action@v3 | |
with: | |
files: lcov.info |