From 97d24a6a873420455ad0ca71da2bdaea6c35725f Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Mon, 12 Jun 2023 12:27:25 +0200 Subject: [PATCH] fix(ci): Also run doc tests (#1095) These are not run by default. And you can not mix them with normal tests apparently. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc96c3cf9f..7a1bde9028 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,9 @@ jobs: - name: tests run: cargo test --workspace --all-features --lib --bins --tests + + - name: doctests + run: cargo test --workspace --all-features --doc build_and_test_windows: name: Build and test (Windows)