Skip to content

fix issue with 'default-features = false' not being respected #219

fix issue with 'default-features = false' not being respected

fix issue with 'default-features = false' not being respected #219

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --release
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --workspace --codecov --output-path codecov.json -- --test-threads=1
- uses: codecov/codecov-action@v3
with:
files: codecov.json