Skip to content

Commit

Permalink
add coverage and extra debian deps (#17)
Browse files Browse the repository at this point in the history
* add coverage and extra debian deps

* remove protobuf add jsonrpc

* fmt

* logging for tests too

* set default level of `info`

* remove empty folder and file
  • Loading branch information
insipx authored Jan 8, 2024
1 parent 36ddb81 commit 77a1a11
Show file tree
Hide file tree
Showing 16 changed files with 539 additions and 680 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Coverage
on: [pull_request, push]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup toolchain install nightly --component llvm-tools-preview
- name: Install cargo-llvm-cov
run: curl -LsSf https://github.com/taiki-e/cargo-llvm-cov/releases/latest/download/cargo-llvm-cov-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
files: lcov.info
fail_ci_if_error: true
Loading

0 comments on commit 77a1a11

Please sign in to comment.