From 2b15ecb11d29d8241689c165a56cb6a858160f85 Mon Sep 17 00:00:00 2001 From: jtmoon79 <815261+jtmoon79@users.noreply.github.com> Date: Thu, 15 Sep 2022 19:42:37 -0700 Subject: [PATCH] rust.yml also test docs Fix first test run to also test docs (`--all-targets` prevented testing docs!?). --- .github/workflows/rust.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c57df5f..f5bc890 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -28,7 +28,10 @@ jobs: - name: Run All Tests Single-threaded run: | set -eux - cargo test -j1 --verbose --all-targets --all-features -- \ + cargo test -j1 --verbose \ + --all-features \ + --future-incompat-report \ + -- \ --test-threads=1 - name: Run Lib Tests Multi-threaded run: |