From 5de04722755808ed42e8ce3ff02f9aebdf3bb164 Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Mon, 29 Nov 2021 22:05:53 +1100 Subject: [PATCH] Run doctests again Per rust-lang/cargo#6424, `cargo check` doesn't actually run the doctests. So we need `cargo test` for this to work. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bed8b0c..375645f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: override: true - name: Doctest - run: cd doctest && cargo check + run: cd doctest && cargo test rustfmt: name: Rustfmt