Skip to content

test: implement repository-wide unit tests #15

test: implement repository-wide unit tests

test: implement repository-wide unit tests #15

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
coverage:

Check failure on line 12 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / Coverage

Invalid workflow file

The workflow is not valid. .github/workflows/coverage.yml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: setup
steps:
- name: Import setup config
uses: ./.github/workflows/setup.yml
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@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@v4
with:
files: lcov.info
fail_ci_if_error: true