Skip to content

Add flags to the code coverage config for per-folder coverage (#16) #20

Add flags to the code coverage config for per-folder coverage (#16)

Add flags to the code coverage config for per-folder coverage (#16) #20

Workflow file for this run

on: push
name: Lint
jobs:
lint:
name: Clippy + rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install minimal nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
override: true
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings