From edb1c31dfb43efbf809b53fce366d6cd76415470 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 5 May 2020 22:20:31 -0700 Subject: [PATCH] Avoid repeating slow doctests and compiletests --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2bc7e0..990afc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,10 @@ jobs: - uses: actions/checkout@v2 - uses: dtolnay/rust-toolchain@nightly - run: cargo test - - run: cargo test --features preserve_order - - run: cargo test --features arbitrary_precision - - run: cargo test --features raw_value - - run: cargo test --features unbounded_depth + - run: cargo test --features preserve_order --tests -- --skip ui --exact + - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact + - run: cargo test --features raw_value --tests -- --skip ui --exact + - run: cargo test --features unbounded_depth --tests -- --skip ui --exact build: name: Rust ${{matrix.rust}}