From 7f70036951fb056f8a6a6819ae210a35288406ef Mon Sep 17 00:00:00 2001 From: "AppFlowy.IO" <86001920+appflowy@users.noreply.github.com> Date: Sat, 20 Nov 2021 14:30:32 +0800 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 294521479c..894ff8cdb5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,4 +12,15 @@ jobs: uses: actions/checkout@v1 - name: Build and Test run: cd frontend && make install_rust && make install_cargo_make && cargo make install_targets + - uses: actions/checkout@v2 + unit_test: + runs-on: macOS-latest + steps: + - name: Run frontend tests + run: cd frontend/rust-lib && cargo test + - name: Run shared-lib tests + run: cd shared-lib && cargo test + + +