From 1884c83cea3a2b933e2222a54369084216261a1f Mon Sep 17 00:00:00 2001 From: Qichao Lan Date: Fri, 21 Jun 2024 10:08:08 +0200 Subject: [PATCH] ci test --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce6c304..28bb355 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,13 @@ jobs: fmt-and-clippy: runs-on: ubuntu-latest - strategy: - matrix: - rust: [stable, beta, nightly] - steps: - uses: actions/checkout@v2 - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: ${{ matrix.rust }} + toolchain: stable override: true - name: Run formatter check @@ -32,3 +28,7 @@ jobs: - name: Run clippy working-directory: rs run: cargo clippy -- -D warnings + + - name: Run tests + working-directory: rs + run: cargo test --workspace --all-targets --exclude wasm