-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Action to Require Tests in Pull Requests (#730)
- Loading branch information
1 parent
342b493
commit f0a5876
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Require Tests on Code Change' | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened] | ||
|
||
jobs: | ||
check: | ||
name: 'Require Tests on Code Change' | ||
|
||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: "Execute tests-checker-action" | ||
uses: infection/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
comment: Could you please add tests to make sure this change works as expected? | ||
fileExtensions: '.php' | ||
testDir: 'tests' | ||
testPattern: '*Test.php' |