From 1c72125caff2969acfc8a1d9cb7873b4b089d1ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rom=C3=A1n=20C=C3=A1rdenas=20Rodr=C3=ADguez?= Date: Wed, 29 Oct 2025 12:30:04 +0100 Subject: [PATCH] Run riscv tests on CI --- .github/workflows/riscv.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/riscv.yaml b/.github/workflows/riscv.yaml index e0234580..0a7ffc2b 100644 --- a/.github/workflows/riscv.yaml +++ b/.github/workflows/riscv.yaml @@ -40,7 +40,7 @@ jobs: - name: Build (all features) run: cargo build --package riscv --target ${{ matrix.target }} --all-features - # On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links. + # On MacOS, Ubuntu, and Windows, we run tests. build-others: strategy: matrix: @@ -49,10 +49,10 @@ jobs: steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable - - name: Build (no features) - run: cargo build --package riscv - - name: Build (all features) - run: cargo build --package riscv --all-features + - name: Test (no features) + run: cargo test --package riscv + - name: Test (all features) + run: cargo test --package riscv --all-features # Job to check that all the builds succeeded build-check: