Skip to content

Node dedupe

Node dedupe #263

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
run: cargo install cargo-llvm-cov
- 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@v3
with:
files: lcov.info
fail_ci_if_error: true
# - name: Run tests
# run: cargo llvm-cov --html --no-fail-fast
# continue-on-error: true
#
# - uses: actions/upload-artifact@v4
# with:
# name: coverage
# path: target/llvm-cov/html/*
# overwrite: true