소스 검색

ci: run tests in debug profile

Yujia Qiao 4 년 전
부모
커밋
dc5ba42e0a
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      .github/workflows/rust.yml

+ 3 - 3
.github/workflows/rust.yml

@@ -57,10 +57,10 @@ jobs:
           profile: minimal
           toolchain: stable
       - uses: Swatinem/rust-cache@v1
-      - name: Build release
-        run: cargo build --release
+      - name: Build
+        run: cargo build
       - name: Run tests
-        run: cargo test --release --verbose
+        run: cargo test --verbose
       - uses: actions/upload-artifact@v2
         with:
           name: rathole-${{ matrix.target }}