From 142f7114fd593ed89958101860427e0b2461daec Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Fri, 26 Apr 2024 14:22:02 +0200 Subject: [PATCH] chore: run tests during CI (#10) --- .github/workflows/testing.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index dab65c1..f23b374 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -31,6 +31,10 @@ jobs: wasm-pack build --release --target web cargo build --release + - name: Run tests + run: | + cargo test + - name: Check coding style run: | cargo fmt --check