소스 검색

ci: run checks for commits on branch dev

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

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

@@ -4,7 +4,7 @@ on:
   pull_request:
     branches: ["*"]
   push:
-    branches: ["main"]
+    branches: ["main", "dev"]
 
 concurrency:
   # Documentation suggests ${{ github.head_ref }}, but that's only available on pull_request/pull_request_target triggers, so using ${{ github.ref }}.