소스 검색

Merge pull request #963 from Avaiga/fix/coverage-action

fix: skip coverage job if event is not pull request
João André 1 년 전
부모
커밋
32b90b9ad0
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .github/workflows/overall-tests.yml

+ 1 - 0
.github/workflows/overall-tests.yml

@@ -13,6 +13,7 @@ jobs:
 
   coverage:
     runs-on: ubuntu-latest
+    if: ${{ github.event_name == 'pull_request' }}
     steps:
       - uses: actions/checkout@v4