From 75219c6e24290bf83d166e70604cc8e87f8644ce Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 18 Jan 2025 08:42:05 +0900 Subject: [PATCH] chore(ci): Run doc test only on ubuntu --- .github/workflows/CI.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9fe753a8f..da61d89a4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -115,6 +115,14 @@ jobs: - run: cargo nextest run --workspace --all-features env: QUICKCHECK_TESTS: 1000 # run a lot of quickcheck iterations + + doc-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: hecrj/setup-rust-action@v2 + - uses: taiki-e/install-action@cargo-hack + - uses: Swatinem/rust-cache@v2 - run: cargo hack --no-private test --doc --all-features interop: