Skip to content

enable coverage workflow #146

enable coverage workflow

enable coverage workflow #146

Workflow file for this run

name: code linter
on:
push:
branches:
- '**'
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
jobs:
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features