소스 검색

Update ci.yaml

AppFlowy.IO 3 년 전
부모
커밋
7f70036951
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      .github/workflows/ci.yaml

+ 11 - 0
.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
+    
+
+