Skip to content

adds license badge and readme details for coverage and style checks #4

adds license badge and readme details for coverage and style checks

adds license badge and readme details for coverage and style checks #4

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-llvm-cov@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check code style
run: cargo clippy -- -D warnings
- name: Check code coverage
run: cargo llvm-cov --html --verbose