From 757a7e879fd0d173c22cb0ffe86335757b585cf9 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Wed, 20 Jul 2022 18:24:04 -0700 Subject: [PATCH] Add ci recipe --- bin/generate-book/src/main.rs | 2 -- justfile | 7 +++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bin/generate-book/src/main.rs b/bin/generate-book/src/main.rs index c7e9fc2716..4dc9cac667 100644 --- a/bin/generate-book/src/main.rs +++ b/bin/generate-book/src/main.rs @@ -1,5 +1,3 @@ -#![cfg_attr(version("1.62"), allow(clippy::format_push_string)] - use { pulldown_cmark::{CowStr, Event, HeadingLevel, Options, Parser, Tag}, pulldown_cmark_to_cmark::cmark, diff --git a/justfile b/justfile index f3bf56730e..c9c67082d8 100755 --- a/justfile +++ b/justfile @@ -17,6 +17,13 @@ export JUST_LOG := log test: cargo test +ci: build-book + cargo test --all + cargo clippy --all --all-targets + cargo fmt --all -- --check + ./bin/forbid + cargo update --locked --package just + fuzz: cargo +nightly fuzz run fuzz-compiler