소스 검색

tests: run full tests on dependency update

Sometimes dependency updates cause test failures, but we don't know
immediately from the pull-request, since the full test suite is only
run when .py files are updated.
Jason Rumney 7 달 전
부모
커밋
d86e8ffbd3
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      .github/workflows/tests.yml

+ 2 - 0
.github/workflows/tests.yml

@@ -5,9 +5,11 @@ on:
   pull_request:
     paths:
       - '**.py'
+      - 'requirements.txt'
   push:
     paths:
       - '**.py'
+      - 'requirements.txt'
 
 jobs:
   tests: