Skip to content

Commit d4cdf05

Browse files
authored
Refactor psalm and phpcs workflows to get static names (#1115)
Using a matrix strategy results in changing names whenever we change the driver or PHP version, requiring an update to protected branch settings. Moving this configuration to env variables prevents this issue.
1 parent 38c48c1 commit d4cdf05

File tree

2 files changed

+16
-22
lines changed

2 files changed

+16
-22
lines changed

.github/workflows/coding-standards.yml

+8-11
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,15 @@ on:
1616
paths-ignore:
1717
- "docs/**"
1818

19+
env:
20+
PHP_VERSION: "8.2"
21+
DRIVER_VERSION: "stable"
22+
1923
jobs:
2024
phpcs:
2125
name: "phpcs"
2226
runs-on: "ubuntu-22.04"
2327

24-
strategy:
25-
matrix:
26-
php-version:
27-
- "8.2"
28-
driver-version:
29-
- "stable"
30-
3128
steps:
3229
- name: "Checkout"
3330
uses: "actions/checkout@v3"
@@ -36,8 +33,8 @@ jobs:
3633
id: extcache
3734
uses: shivammathur/cache-extensions@v1
3835
with:
39-
php-version: ${{ matrix.php-version }}
40-
extensions: "mongodb-${{ matrix.driver-version }}"
36+
php-version: ${{ env.PHP_VERSION }}
37+
extensions: "mongodb-${{ env.DRIVER_VERSION }}"
4138
key: "extcache-v1"
4239

4340
- name: Cache extensions
@@ -51,8 +48,8 @@ jobs:
5148
uses: "shivammathur/setup-php@v2"
5249
with:
5350
coverage: "none"
54-
extensions: "mongodb-${{ matrix.driver-version }}"
55-
php-version: "${{ matrix.php-version }}"
51+
extensions: "mongodb-${{ env.DRIVER_VERSION }}"
52+
php-version: "${{ env.PHP_VERSION }}"
5653
tools: "cs2pr"
5754

5855
- name: "Show driver information"

.github/workflows/static-analysis.yml

+8-11
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,15 @@ on:
1616
paths-ignore:
1717
- "docs/**"
1818

19+
env:
20+
PHP_VERSION: "8.2"
21+
DRIVER_VERSION: "stable"
22+
1923
jobs:
2024
psalm:
2125
name: "Psalm"
2226
runs-on: "ubuntu-22.04"
2327

24-
strategy:
25-
matrix:
26-
php-version:
27-
- "8.2"
28-
driver-version:
29-
- "stable"
30-
3128
steps:
3229
- name: "Checkout"
3330
uses: "actions/checkout@v3"
@@ -36,8 +33,8 @@ jobs:
3633
id: extcache
3734
uses: shivammathur/cache-extensions@v1
3835
with:
39-
php-version: ${{ matrix.php-version }}
40-
extensions: "mongodb-${{ matrix.driver-version }}"
36+
php-version: ${{ env.PHP_VERSION }}
37+
extensions: "mongodb-${{ ENV.DRIVER_VERSION }}"
4138
key: "extcache-v1"
4239

4340
- name: Cache extensions
@@ -51,8 +48,8 @@ jobs:
5148
uses: "shivammathur/setup-php@v2"
5249
with:
5350
coverage: "none"
54-
extensions: "mongodb-${{ matrix.driver-version }}"
55-
php-version: "${{ matrix.php-version }}"
51+
extensions: "mongodb-${{ ENV.DRIVER_VERSION }}"
52+
php-version: "${{ env.PHP_VERSION }}"
5653
tools: "cs2pr"
5754

5855
- name: "Show driver information"

0 commit comments

Comments
 (0)