From 953262c1d90dc2d2346e458947c8b0294ecb2535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sat, 28 Jan 2023 14:09:27 -0800 Subject: [PATCH] test: separate runs for async-std and tokio --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 087ab90..262bb44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,8 @@ jobs: - name: docs run: cargo doc - build_and_test: - name: Build & Test + build_and_test_async_std: + name: Build & Test (async-std) runs-on: ${{ matrix.os }} strategy: matrix: @@ -46,3 +46,25 @@ jobs: run: cargo clippy -- -D warnings - name: Run tests run: cargo test --verbose + + build_and_test_tokio: + name: Build & Test (Tokio) + runs-on: ${{ matrix.os }} + strategy: + matrix: + rust: [1.66.1, stable] + os: [ubuntu-latest, macOS-latest, windows-latest] + + steps: + - uses: actions/checkout@v1 + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: ${{ matrix.rust }} + components: clippy + override: true + - name: Check + run: cargo check --no-default-features --features tokio-runtime + - name: Run unit tests + run: cargo test --verbose --no-default-features --features tokio-runtime --lib