File tree Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Expand file tree Collapse file tree 3 files changed +30
-3
lines changed Original file line number Diff line number Diff line change 11name : Lint and analyse files
22
3- on : [push]
3+ on :
4+ push :
5+ pull_request :
6+ branches :
7+ # Branches from forks have the form 'user:branch-name' so we only run
8+ # this job on pull_request events for branches that look like fork
9+ # branches. Without this we would end up running this job twice for non
10+ # forked PRs, once for the push and then once for opening the PR.
11+ # Source: https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
12+ - ' **:**'
413
514jobs :
615 lint-php :
Original file line number Diff line number Diff line change 11name : lint php documentation
2- on : [push]
32
3+ on :
4+ push :
5+ pull_request :
6+ branches :
7+ # Branches from forks have the form 'user:branch-name' so we only run
8+ # this job on pull_request events for branches that look like fork
9+ # branches. Without this we would end up running this job twice for non
10+ # forked PRs, once for the push and then once for opening the PR.
11+ # Source: https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
12+ - ' **:**'
413jobs :
514 lint-docs :
615 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : Run tests
22
3- on : [push]
3+ on :
4+ push :
5+ pull_request :
6+ branches :
7+ # Branches from forks have the form 'user:branch-name' so we only run
8+ # this job on pull_request events for branches that look like fork
9+ # branches. Without this we would end up running this job twice for non
10+ # forked PRs, once for the push and then once for opening the PR.
11+ # Source: https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
12+ - ' **:**'
413
514jobs :
615 test-php :
You can’t perform that action at this time.
0 commit comments