Skip to content

Placate clippy

Placate clippy #60

Workflow file for this run

name: ci
on:
push:
branches:
- "*"
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy --all -- -D warnings
fmt:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt --all -- --check
test:
needs: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo test
docs:
needs: fmt
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- name: Check docs
run: cargo doc --all --no-deps