Skip to content

Commit 35008da

Browse files
authored
GH Actions: various small tweaks
2 parents 955f87d + b76615a commit 35008da

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/php-qa.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: PHP Quality Assurance
22
on:
3-
push:
4-
# Allow manually triggering the workflow.
5-
workflow_dispatch:
3+
push:
4+
pull_request:
5+
# Allow manually triggering the workflow.
6+
workflow_dispatch:
67

78
# Cancels all previous workflow runs for the same branch that have not yet completed.
89
concurrency:
9-
# The concurrency group contains the workflow name and the branch name.
10-
group: ${{ github.workflow }}-${{ github.ref }}
11-
cancel-in-progress: true
10+
# The concurrency group contains the workflow name and the branch name.
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
1213

1314
jobs:
1415
qa:
1516
runs-on: ubuntu-latest
16-
if: "!contains(github.event.head_commit.message, 'ci skip')"
17+
1718
strategy:
18-
fail-fast: true
1919
matrix:
2020
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
2121
dependency-versions: ['lowest', 'highest']
@@ -31,7 +31,8 @@ jobs:
3131
continue-on-error: ${{ matrix.php-versions == '8.6' }}
3232

3333
steps:
34-
- uses: actions/checkout@v6
34+
- name: Checkout code
35+
uses: actions/checkout@v6
3536

3637
- name: Setup PHP
3738
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)