From cc89238a094022ea6c9b94c2a3090067cd28c22f Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 19 Jun 2024 16:25:23 +0300 Subject: [PATCH] github: Separate compatibility tests in own workflow --- .github/workflows/rust.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 84ef1e5d6..eeafbc132 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -21,9 +21,13 @@ jobs: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose - - name: Run Rust tests + - name: Test run: cargo test --verbose - - name: Run compatibility tests + + test-compat: + runs-on: ubuntu-latest + steps: + - name: Test run: make test build-wasm: