Skip to content

Add code coverage action #97

Add code coverage action

Add code coverage action #97

Workflow file for this run

name: Test
on:
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -Dclippy::all -D warnings
- name: Run tests
run: cargo test --verbose